PHP fseek 与远程文件
我想从末尾读取远程文件,但 fseek 不支持远程文件。有办法做到这一点吗?
I want to read remote file from the end but fseek doesn't support remote files. Is there way to make this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编写您自己的 streamwrapper。或者在本地复制整个文件并对其进行 fseek。
Write your own streamwrapper. Or copy the whole file locally and fseek on that.
你应该尝试 cURL 。它应该完成工作。
你只需要检查你的网络服务器上是否安装了 CURL。
you should try cURL . it should get the job done.
u just need to check if CURL is installed on ur web server.