0

file_get_htmlを使用して単純なhtmlDOMを作成しましたが、URLのページソースを取得する方法がわかりません。方法はありますか?私はpaintextについて話していません!

ありがとう

4

1 に答える 1

4

試してみてくださいfile_get_contents。WebサイトのURLのソースを取得します

ソースコードを見たい場合はこれを試してください

echo htmlentities(file_get_contents("http://www.google.com"));

http://php.net/manual/en/function.file-get-contents.php

CURLを使用してこれを行うこともできます

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $file);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_REFERER, "http://www.google.com");
$result = curl_exec($ch);
curl_close($ch);
于 2012-05-05T09:34:21.010 に答える