确保php脚本只能从命令行执行(或作为cron作业)

时间:2013-10-29 16:09:18

标签: php cron cron-task

这是我正在使用的代码,是否足以确保脚本只能作为cron作业运行?它确实有用,但也许我错过了一些东西。

   if (php_sapi_name() !== 'cli') {
     die("You are not allwod here");
    }

1 个答案:

答案 0 :(得分:0)

是的,那会有效。我还要确保脚本在根目录之外。