【发布时间】:2017-03-09 02:53:12
【问题描述】:
PHP 对此的行为何时发生了变化?
它来自哪个 PHP 版本?
警告:file_get_contents():流不支持搜索 /simple_html_dom.php
警告:file_get_contents():未能在流中寻找位置 -1 /simple_html_dom.php
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;
}
}
【问题讨论】:
-
这发生在 PHP 7.1 中,但在 7.0 和 5.6 中可以正常工作。
-
此兼容性问题已在 1.7 及更高版本中修复
标签: php simple-html-dom