-
Notifications
You must be signed in to change notification settings - Fork 36
Home
caohui123 edited this page May 26, 2018
·
1 revision
Welcome to the yii2-cronjobs wiki!
in >= php7.2
protected function formatFileName($pattern, $task){
$pattern = str_replace(
array('%L', '%C', '%A', '%P','%D'),
array($this->logsDir, $task['command'], $task['action'], getmypid(),date('Ymd')),
$pattern
);
//return preg_replace_callback('#%D\((.+)\)#U', create_function('$str', 'return date($str[1]);'), $pattern);
return preg_replace_callback('#%D\((.+)\)#U', function ($str) {
return date($str[1]);
}, $pattern);
}