PHP fseek with remote files
I want to read remote file from the end but fseek doesn't support remote files. Is there way t开发者_如何学Pythono make this?
Write your own streamwrapper. Or copy the whole file locally and fseek on that.
you should try cURL . it should get the job done.
u just need to check if CURL is installed on ur web server.
精彩评论