언제 PHP 동작이 변경 되었습니까?file_get_contents() : 스트림이 탐색을 지원하지 않습니다 /이 문제에 대한 PHP 동작이 변경된시기는 언제입니까?
PHP 버전은 무엇입니까?
경고 : file_get_contents() : 스트림이 /simple_html_dom.php
경고에 노력을 지원하지 않습니다 : file_get_contents() : /simple_html_dom에 위치 추구 -1 스트림에 실패 에 .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에서이 ocurrs에
$offset in file simple_html_dom.php
을 제거 할 수 있지만 7.0의 D 5.6 잘 작동. – Jorny