dpo69086 2016-01-06 23:11
浏览 213
已采纳

从cron作业执行脚本时,shell_exec('crontab -l')为空

I'm trying to delete specific cron job with my PHP script. First of all I'm trying to get current cron jobs using shell_exec:

shell_exec('crontab -l');

When this script executing from webbrowser shell_exec returns all current cron jobs. But when this script executing from cron job shell_exec returns empty string. Why?

On another webhosting this works fine, but here I have this issue. I tried to find the reason or solution, tried different ways but didn't found any working solution.

  • 写回答

1条回答 默认 最新

  • dongwuchu0314 2016-01-07 00:59
    关注

    You must put the entire path of the command, in this case, the path of crontab. Because when the crontab executes their jobs, there is no environment variable $PATH to look for binaries

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?