可能性の重複:
What is the canonical way to determine commandline vs. http execution of a PHP script?PHPとcronジョブ
はcronジョブのためのPHPでいくつかの "条件付き" のタグがありますか?何をしたい:
if(cron_job_executing_this_php_file)
{
do something
}
elseif($_SERVER['REMOTE_ADDR'] = "blah.bl.ah.bl")
{
do something
}
は、私はこのような何かを行うことができますか?
なぜあなたのcronジョブ用に別のPHPファイルを作成するだけではないのですか? –
あなたのcrontabが$ _GET変数を送ることができるかもしれません\t 0 3 * * * sudo /usr/local/bin/myfile.php?cron=true –
[Can PHP detect can detectそれがcronジョブかコマンドラインから実行されていれば?](http://stackoverflow.com/questions/190759/can-php-detect-if-its-run-from-a-cron-job-or-from) -the-command-line) – Leigh