如何阅读PHP的网页?
我正在尝试使用PHP脚本将一些网页保存到文本文件中。
如何使用PHP将网页加载到文件缓冲区并删除HTML标签?
fopen()
或 file_get_contents()
URL:fopen("http://google.com/", "r")
http
模块http_get()
fsockopen()
或stream_socket_client()
发送它
wget
curl
system()
但是,这些都不能保证在您的服务器上可用。
一种方式:
$url = "http://www.brothersoft.com/publisher/xtracomponents.html";
$page = file_get_contents($url);
$outfile = "xtracomponents.html";
file_put_contents($outfile, $page);
上面的代码只是一个示例,缺少任何(!)错误检查和处理。