我需要确定 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 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
PHP、MySQL PDOException 的死锁异常代码?Deadlock exception code for PHP, MySQL PDOException?(PHP、MySQL PDOException 的死锁异常代码?)
PHP PDO MySQL 可滚动游标不起作用PHP PDO MySQL scrollable cursor doesn#39;t work(PHP PDO MySQL 可滚动游标不起作用)
PHP PDO ODBC 连接PHP PDO ODBC connection(PHP PDO ODBC 连接)
使用 PDO::FETCH_CLASS 和魔术方法Using PDO::FETCH_CLASS with Magic Methods(使用 PDO::FETCH_CLASS 和魔术方法)
php pdo 只从 mysql 获取一个值;等于变量的值php pdo get only one value from mysql; value that equals to variable(php pdo 只从 mysql 获取一个值;等于变量的值)
MSSQL PDO 找不到驱动程序MSSQL PDO could not find driver(MSSQL PDO 找不到驱动程序)