<tfoot id='qii28'></tfoot>
      <bdo id='qii28'></bdo><ul id='qii28'></ul>

    1. <legend id='qii28'><style id='qii28'><dir id='qii28'><q id='qii28'></q></dir></style></legend>

    2. <i id='qii28'><tr id='qii28'><dt id='qii28'><q id='qii28'><span id='qii28'><b id='qii28'><form id='qii28'><ins id='qii28'></ins><ul id='qii28'></ul><sub id='qii28'></sub></form><legend id='qii28'></legend><bdo id='qii28'><pre id='qii28'><center id='qii28'></center></pre></bdo></b><th id='qii28'></th></span></q></dt></tr></i><div id='qii28'><tfoot id='qii28'></tfoot><dl id='qii28'><fieldset id='qii28'></fieldset></dl></div>

    3. <small id='qii28'></small><noframes id='qii28'>

    4. 如何确定是否通过 cron/命令行加载了 PHP 文件

      时间:2023-10-04

        <tbody id='zNpGg'></tbody>
      • <legend id='zNpGg'><style id='zNpGg'><dir id='zNpGg'><q id='zNpGg'></q></dir></style></legend>

          • <bdo id='zNpGg'></bdo><ul id='zNpGg'></ul>
            1. <tfoot id='zNpGg'></tfoot>

              <small id='zNpGg'></small><noframes id='zNpGg'>

              <i id='zNpGg'><tr id='zNpGg'><dt id='zNpGg'><q id='zNpGg'><span id='zNpGg'><b id='zNpGg'><form id='zNpGg'><ins id='zNpGg'></ins><ul id='zNpGg'></ul><sub id='zNpGg'></sub></form><legend id='zNpGg'></legend><bdo id='zNpGg'><pre id='zNpGg'><center id='zNpGg'></center></pre></bdo></b><th id='zNpGg'></th></span></q></dt></tr></i><div id='zNpGg'><tfoot id='zNpGg'></tfoot><dl id='zNpGg'><fieldset id='zNpGg'></fieldset></dl></div>
                本文介绍了如何确定是否通过 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 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:在运行命令行脚本时设置 PHP 环境变量 下一篇:无法运行 PHP cron 脚本

                相关文章

                最新文章

                1. <tfoot id='BOyTu'></tfoot>

                2. <legend id='BOyTu'><style id='BOyTu'><dir id='BOyTu'><q id='BOyTu'></q></dir></style></legend>
                  <i id='BOyTu'><tr id='BOyTu'><dt id='BOyTu'><q id='BOyTu'><span id='BOyTu'><b id='BOyTu'><form id='BOyTu'><ins id='BOyTu'></ins><ul id='BOyTu'></ul><sub id='BOyTu'></sub></form><legend id='BOyTu'></legend><bdo id='BOyTu'><pre id='BOyTu'><center id='BOyTu'></center></pre></bdo></b><th id='BOyTu'></th></span></q></dt></tr></i><div id='BOyTu'><tfoot id='BOyTu'></tfoot><dl id='BOyTu'><fieldset id='BOyTu'></fieldset></dl></div>

                  <small id='BOyTu'></small><noframes id='BOyTu'>

                      <bdo id='BOyTu'></bdo><ul id='BOyTu'></ul>