芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/public_html/avenida/vendor/mtdowling/cron-expression/src/Cron/MonthField.php
isSatisfied($date->format('m'), $value); } public function increment(DateTime $date, $invert = false) { if ($invert) { $date->modify('last day of previous month'); $date->setTime(23, 59); } else { $date->modify('first day of next month'); $date->setTime(0, 0); } return $this; } public function validate($value) { return (bool) preg_match('/^[\*,\/\-0-9A-Z]+$/', $value); } }