samacs / simple_html_dom

Just a Simple HTML DOM library fork. (http://simplehtmldom.sourceforge.net/)
589 stars 544 forks source link

PHP 7.2.5 #13

Open songwutk opened 6 years ago

songwutk commented 6 years ago

php 7.2.5

PHP Warning: file_get_contents(): stream does not support seeking in simple_html_dom.php on line 90 PHP Warning: file_get_contents(): Failed to seek to position -1 in the stream in simple_html_dom.php on line 90

samacs commented 6 years ago

I think that's the expected behavior. See:

https://stackoverflow.com/questions/42685814/file-get-contents-stream-does-not-support-seeking-when-was-php-behavior-abo

samacs commented 6 years ago

You could use http://php.net/manual/fr/function.stream-get-contents.php and https://github.com/guzzle/streams/blob/master/src/LimitStream.php to read a buffered stream. I might give it a roll but if you have the time you could open a PR.