0

我将 file_get_html 用于简单的 html DOM,但我不知道如何获取 url 的页面源!有什么办法吗?我不是在谈论疼痛文本!

谢谢

4

1 回答 1

4

试试file_get_contents。它将获取网站网址的来源

如果你想看源代码试试这个

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 回答