コード例 #1
0
ファイル: timestamp.php プロジェクト: bosoy83/progtest
 public function value($value)
 {
     if ($value and is_string($value) and !ctype_digit($value)) {
         $value = strtotime($value);
     }
     return parent::value($value);
 }