私は別のウェブサイト(URLと要素名が提供されています)から静的なデータを取得したいのですが、最も簡単な方法は何ですか?異なるサイトからデータを取得する最も簡単な方法
www.address /記事/グラブ-この
<html>
(...)
<article id="#article-121">
<h1>Header</h1>
<p>Contents</p>
</article>
(...)
</html>
のindex.php
/* Grab "#article-121" from www.address/articles/grab-this */
<article id="#article-121">
<h1>Header</h1>
<p>Contents</p>
</article>
/* Close the connection */
重複検索、解析用HTML phpの – dynamic
解析する[ベストな方法の可能性のある重複HTML with PHP](http://stackoverflow.com/questions/3577641/best-methods-to-parse-html-with-php) – Gordon