如何阅读PHP的网页?

2022-08-30 22:32:50

我正在尝试使用PHP脚本将一些网页保存到文本文件中。

如何使用PHP将网页加载到文件缓冲区并删除HTML标签?


答案 1

但是,这些都不能保证在您的服务器上可用。


答案 2

一种方式:

$url = "http://www.brothersoft.com/publisher/xtracomponents.html";
$page = file_get_contents($url);
$outfile = "xtracomponents.html";
file_put_contents($outfile, $page);

上面的代码只是一个示例,缺少任何(!)错误检查和处理。


推荐