php 正则 从字符串中获取日期


$string ='更新时间:2014-10-28 10:37';
function getDates($string = null){
$pattern="/\\d{1,2}((-|\/)\d{1,2}){2}(\s{0,5}\\d{1,2}(\:\d{1,2}){1,2}){0,1}/";
preg_match_all($pattern,$string,$match);
print_r($match); 

return $match;

}

$match 返回的结果

Array ( [0] => Array ( 
[0] => 14-10-28 10:37 ) 
[1] => Array ( [0] => -28 ) 
[2] => Array ( [0] => - ) 
[3] => Array ( [0] => 10:37 ) 
[4] => Array ( [0] => :37 )
   );
注意:有的时间格式并不是标准的时间格式,如果还要做时间操作的话,还得转换

你可能感兴趣的:(php,正则,php语言)