file_get_contents(): 流不支持搜索 / PHP 的行为何时发生了变化?
2022-08-30 20:09:51
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;
}
}