PHP 的行为是什么时候改变的?
它来自哪个 PHP 版本?
警告:file_get_contents():流不支持在 /simple_html_dom.php 中查找
警告:file_get_contents():无法在 /simple_html_dom.php 的流中定位 -1
include('parser/simple_html_dom.php');
$url = "https://en.wikipedia.org/wiki/Stack_Overflow";
$html = file_get_html($url);
if ($html !== false) {
foreach($html->find('div#mw-content-text') as $item){
$item->plaintext;
}
}
原文由 re1 发布,翻译遵循 CC BY-SA 4.0 许可协议
See file_get_contents(): stream 不支持求 PHP
您正在使用远程文件。搜索仅支持本地文件。
在使用
file_get_html
之前,您可能需要将文件复制到本地文件系统。它应该在本地主机上正常工作。