我有一个cron设置每分钟运行
* * * * * /usr/PHP /my/location/script.PHP
console$time /usr/PHP /my/location/script.PHP
real 0m0.000s user 0m0.000s sys 0m0.000s
但它不适用于这样的cron:
* * * * * time /usr/PHP /my/location/script.PHP 2>&1 >> my_log_file
它也不能在命令行上运行
console$time /usr/PHP /my/location/script.PHP >> my_log_file
在上面的两个示例中,time函数实际上计算写入my_log_file所花费的时间,而不是将其输出写入日志文件.
在脚本中添加代码并记录STD OUTPUT不是一个选项.