使用 PHP 控制 wget
我正在编写一个命令行 PHP 控制台脚本来监视新的 URL 并为我正在处理的客户项目启动(大量)下载。客户端当前正在使用稍微具体的 wget 命令手动下载它们,并且理想情况下希望保持这种状态。
我想知道从 PHP 调用 wget 的最佳方法是什么,并监视已完成的下载或出现的任何错误。目前,我正在使用基本的 shell_exec,但这不适合生产环境。
任何建议都会非常有帮助。
提前致谢。
I’m writing a command line PHP console script to watch for new URLs and launch (large) downloads for a client’s project I am working on. The client is currently manually downloading them with a slightly specific wget command and ideally would like to stay with that.
I was wondering what the best way to call wget from PHP would be and to watch for either a completed download or any errors that come along. At the moment, I’m using a basic shell_exec however this isn’t suitable for a production environment.
Any suggestions at all would be extremely helpful.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要考虑使用curl 而不是wget。 libcurl 很好地集成到 PHP 中 - 具有所有错误报告功能。
Something you might want to consider is using curl instead of wget. libcurl is integrated into PHP well - with all the shabang of error reporting.