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

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

问题描述

我需要确定是否通过cron或命令行在代码中加载PHP文件。我如何做到这一点?

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天全站免登陆