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

后端 未结 7 1619
醉酒成梦
醉酒成梦 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

    0 讨论(0)
提交回复
热议问题