使用 PHP 控制 wget

发布于 2024-08-13 05:24:17 字数 225 浏览 5 评论 0原文

我正在编写一个命令行 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

临风闻羌笛 2024-08-20 05:24:17

您可能需要考虑使用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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文