检查cron作业是否调用了函数


13

我有一个只想通过cron作业运行的功能。有没有一种方法可以检查特定的预定事件是否正在调用此函数,而没有其他方法?


3
顺便说一句:如果没有得到奖励,您不会得到赏金。由于您已经将一个答案标记为解决方案,因此请向用户提供赏金。谢谢。
kaiser 2012年

Answers:


18

WordPress有一个常数DOING_CRON,可以帮助我们知道我们是否在进行cron工作。它在wp-cron.php文件中定义。

因此,您可以在代码中检查此常量:

if ( defined( 'DOING_CRON' ) )
{
    // Do something
}

2
从WordPress 4.8.0开始,wp_doing_cron()可以代替使用。

2

看看我为问题#18017编写的»Cron API inspector«。该插件将构建一个表,该表显示在-hook /页面末尾。shutdown

它使用该_get_cron_array()功能检索所有已注册和计划的操作。另一个有用的功能是wp_get_schedules()。第三种方法是_get_cron_array()直接通过调用调用底层数据get_option( 'cron' );-最好使用WP core中的默认API函数。

如果您想知道自己当前是否在Cron Job中,则可以检查defined( 'DOING_CRON' ) AND DOING_CRON


1

我不是在研究开发(我只是一个发烧友),但我认为您可以在活动中添加add_action

只是简历而已...

//to the event
if(your_condition)
{
    add_action('original_event_to_hook', 'your_scheduled');
}

function your_scheduled()
{
    //create a param here
    //And shedule your function with arg
    wp_schedule_event(time(), 'hourly', 'your_function', array('param_1' => value));
}

function your_function($args){

   $verification = $args['param_1'];
   if($verification)
   {
      //OK
      //Eventually delete this schedule with this specific arg
   }
}

检索您的cron“ your_function”列表,其中有此arg

     //Get a filtered list of cron hooks 
        function kw_filter_crons_hooks($hooks = false, $args = false)
        {
            $crons = get_option('cron');

            if (!$crons)
            {
                $crons[0] = NULL;
            }

            $filter = array();
            $cronlist = array();
            $schedule = array();

            foreach($crons as $timestamp => $cron)
            {
                //@param $hooks = string 'schedule'
                //@param $args = false
                //Return an array of cron task sheduled
                $schedule[] = $cron;

                if(!$schedule && $hooks == 'schedule' && $args == false)
                {
                    $schedule[0] = NULL;
                }

                foreach($hooks as $hook)
                {
                    if(isset($cron[$hook]))
                    {
                        //@param $hooks = array($hook);
                        //@param $args = false
                        //Return an array of cron task sheduled
                        $cronlist[] = $cron;

                        if(!$cronlist && is_array($hooks) && $args == false)
                        {
                            $cronlist[0] = NULL;
                        }

                        if(!empty($args))
                        {
                            foreach($cronlist as $key => $value)
                            {
                                foreach($value as $k => $v)
                                {
                                    foreach($v as $x => $y)
                                    {
                                        foreach($args as $arg => $val)
                                        {
                                            if ($y['args'][$arg] == $val)
                                            {
                                                //@param $hooks = array($hook);
                                                //@param $args = array($arg);
                                                //Return an array of cron task specified filtered by arg
                                                $filter[$x] = $y;
                                                if(!$filter && is_array($hooks) && is_array($args))
                                                {
                                                    $filter[0] = NULL;
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }


            if(is_array($hooks) && $args === false && $cronlist)
            {
                return $cronlist;
            }
            else if(is_array($hooks) && is_array($args) && $filter)
            {
                return $filter;
            }
            else if($hooks === 'schedule' && $args === false && $schedule)
            {
                return $schedule;
            }
            else if($hooks === false && $args === false && $crons)
            {
                return $crons;
            }
            else
            {
                return false;
            }
        }

//Usage
    $cron_filtered = kw_filter_crons_hooks(array('your_function'), array('param_1' => value));
    var_dump($cron_filtered);
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.