예제 #1
0
파일: DateLocal.php 프로젝트: arbi/MyCode
 public static function convertDate($date)
 {
     if (empty($date)) {
         return '';
     }
     if (ClassicValidator::checkDateRegex($date)) {
         list($day, $month, $year) = explode(' ', $date);
         return $year . '-' . self::convertMonth($month) . '-' . $day;
     } else {
         throw new \Exception('Invalid date format.');
     }
 }