file_get_contents(): stream does not support seeking / When was PHP behavior about this changed?

后端 未结 7 1636
醉酒成梦
醉酒成梦 2020-12-06 05:00

When was PHP behavior about this changed?

From which PHP version is it?


Warning: file_get_contents(): stream does not supp

7条回答
  •  太阳男子
    2020-12-06 05:43

    Change

    function file_get_html(..., $offset = -1,...)
    

    to

    function file_get_html(..., $offset = 0,...)
    

    in simple_html_dom.php

提交回复
热议问题