cron 작업에서 함수가 호출했는지 확인


13

cron 작업을 통해서만 실행하려는 기능이 있습니다. 예약 된 특정 이벤트가 다른 함수가 아닌이 함수를 호출하는지 확인할 수있는 방법이 있습니까?


3
Btw : 보상이 없으면 현상금을받지 못합니다. 답변으로 하나의 답변을 이미 표시 했으므로 사용자에게 현상금도 제공하십시오. 감사.
카이저

답변:


18

워드 프레스는 DOING_CRONcron 작업을하고 있는지 아닌지를 알려주 는 상수 를 가지고 있습니다. wp-cron.php파일에 정의되어 있습니다.

따라서 코드에서이 상수를 확인할 수 있습니다.

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

2
WordPress 4.8.0부터 wp_doing_cron()대신 사용할 수 있습니다.
Joe

2

질문 # 18017대해 작성한 »Cron API inspector«를 살펴보십시오 . 플러그인은 -hook / 페이지 끝에 표시되는 테이블을 작성합니다 .shutdown

_get_cron_array()기능을 사용하여 등록 및 예약 된 모든 작업을 검색합니다. 또 다른 유용한 기능은 wp_get_schedules()입니다. 세 번째 방법은 호출하여 기본 데이터를 _get_cron_array()직접 호출하는 get_option( 'cron' );것입니다. 여전히 WP 코어의 기본 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"의 목록을 검색하려면

     //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);
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.