5

cron 命令:

     /user/bin/php "/path/Script.php" >> /path/LogFile.html

当 php 输出到我的日志文件时,它总是开始说

  X-Powered-By: PHP/5.3.22 Content-type: text/html

所以对于我的输出文件,它看起来像:

X-Powered-By: PHP/5.3.22 Content-type: text/html X-Powered-By: PHP/5.3.22 Content-type: text/html X-Powered-By: PHP/5.3.22 Content-type: text/html X-Powered-By: PHP/5.3.22 Content-type: text/html
 NEW DAY MARKER | 29/04/2013 00:00:07
 Total Exchanges: 73294
 Total GMT references: 7
 Exchanges pending approval: 4

输出是表格格式,导致重复的 text/html 标头淹没了我的日志文件的前 4 或 5 页 - 因为它们介于

   </tr> X-Powered-By: text/html <tr>

标签。

无论如何我可以告诉它在运行 cron 作业时不要输出那种头信息吗?(我不想在全球范围内禁用它 - 需要 Web 界面才能与其他 PHP 脚本一起工作)

linux主机、cpanel、vps

4

1 回答 1

5
/user/bin/php -q "/path/Script.php" >> /path/LogFile.html

-q开关将以安静模式运行,这将禁用标头输出

更多开关的php命令行帮助

于 2013-04-29T12:14:53.547 回答