如何确定是否通过 cron/命令行加载了 PHP 文件 [英] How to determine if a PHP file is loaded via cron/command line

查看:37
本文介绍了如何确定是否通过 cron/命令行加载了 PHP 文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要确定 PHP 文件是通过代码中的 cron 还是命令行加载的.我该怎么做?

I need to determine whether the PHP file is being loaded via cron or command line within the code. How can I do this?

推荐答案

如果您可以控制 cron 或命令,您是否考虑过传递命令行参数,并使用 $_SERVER['argv' 读取它][0]?

If you have control over the cron or command, have you considered passing a command-line argument, and reading it with $_SERVER['argv'][0]?

* * * * *   /usr/bin/php /path/to/script --cron

在脚本中:

<?php
if(isset($_SERVER['argv'][0]) and $_SERVER['argv'][0] == '--cron')
   $I_AM_CRON = true;
else
   $I_AM_CRON = false;

这篇关于如何确定是否通过 cron/命令行加载了 PHP 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆