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

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

    See file_get_contents(): stream does not support seeking PHP

    You are working with a remote file. Seeking is only supported for local files.

    You probably need to copy the file to your local file system before using file_get_html. It should work fine on localhost.

提交回复
热议问题