我正在努力进行这项工作:
exec("crontab -u root -l", $crons, $return);
但是$crons
会返回一个空数组,即使在命令运行时也是如此;当我运行sudo crontab -u root -l
时,它给出的结果如下:
17 * * * * root cd / && run-parts --report /etc/cron.hourly
25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
*/1 * * * * root /usr/bin/php /var/www/console Test:Testing
最后一行是我认为很重要的...
为什么我得到一个空数组?