Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个命令行 PHP 控制台脚本来监视新 URL 并为我正在处理的客户项目启动(大)下载。客户端目前正在使用稍微特定的 wget 命令手动下载它们,理想情况下希望继续使用它。
我想知道从 PHP 调用 wget 的最佳方法是什么,并注意是否已完成下载或出现的任何错误。目前,我使用的是基本的 shell_exec,但这不适合生产环境。
任何建议都会非常有帮助。
提前致谢。
您可能需要考虑使用 curl 而不是 wget。libcurl 很好地集成到 PHP 中 - 带有所有错误报告的shabang。