0

我正在尝试提取网站的 html,

我正在使用file_get_contents($url).

当我运行时file_get_contents,它需要太多时间拉取主机站点的 html,我可以跳过样式、脚本和图像吗?

我认为这样会花费更少的时间来提取该网站的 html。

4

1 回答 1

1

尝试:

$file = file_get_contents($url);
$only_body = preg_replace("/.*<body[^>]*>|<\/body>.*/si", "", $file);
于 2014-03-19T15:59:20.787 回答