0

私はphpを初めて使用しています(昨日開始しました)。html/cssと少しのjsのバックグラウンドが十分にあるので、試してみます。

php を独学するための簡単なアプリケーションを構築しようとしていますが、別のサイトから div などの html を参照したいと考えていました。

<div id="name"> <p>Sam</p> </div>ページ「http://www.example.com/about.php」

私がしようとしていた<?php echo file_get_contents("http://www.example.com #name"); ?>のは、それを行う正しい方法ですか?

include echo使用する方が良いかどうかもわかりませんでしたecho file_get_contents

初歩的な質問ですみません

4

1 に答える 1

0

これは で実行できますDOMDocument。例を次に示します。

$doc = new DOMDocument();
$doc->loadHTMLFile('http://example.com/');

// get the element that has id=name
$result = $doc->getElementById('name');

echo $result->nodeValue; // prints: Sam

// or print out $result to see all of the properties
print_r($result);
于 2012-10-09T18:29:14.280 に答える