我有cronjob的问题,而不是功能与异常时间一起工作,我已经在代码中给出了。
例如:我已将其设置为每5分钟运行一次,但运行时间不均匀。
请帮帮我,
我是wordpress的新手。
function my_cron_schedules($schedules){
if(!isset($schedules["five_min"])){
$schedules["five_min"] = array(
'interval' => 5*60,
'display' => __('Once every 5 minutes'));
}
return $schedules;
}
add_filter('cron_schedules','my_cron_schedules');
wp_clear_scheduled_hook( 'my_schedule_hook_5min');
wp_schedule_event(time(), 'five_min', 'my_schedule_hook_5min');
add_action('my_schedule_hook_5min', 'wi_create_backup');
function wi_create_backup(){
global $wpdb;
$tablename = $wpdb->prefix.'check_cron';
$data=array('text' =>date("Y-m-d H:i:s"));
$wpdb->insert( $tablename, $data);
if (wp_mkdir_p('C:\wamp64\www\Bakery\test\5')) {
echo 'It worked! Now look for a directory named "5".';
}
}