「PHP入門」preg_match_all()で日付の形式チェックコード

PHPコード:
<?php
$str="AA2016/06/13 14:31:56BB2014/12/31 13:21:45″;
$str2="AA2016-06-13 14:31:56BB2014-12-31 13:21:45″;
//日付
preg_match_all(“/d{4}/d{2}/d{2}/", $str, $arr);
preg_match_all(“/d{4}-d{2}-d{2}/", $str2, $arr2);
//日付と時刻
preg_match_all(“/d{4}/d{2}/d{2}sd{2}:d{2}:d{2}/", $str, $arr3);
preg_match_all(“/d{4}-d{2}-d{2}sd{2}:d{2}:d{2}/", $str2, $arr4);
echo '<font color="red">日付マッチ</font><br>’;
print_r($arr);
print_r($arr2);
echo '<font color="red">時刻マッチ</font><br>’;
print_r($arr3);
print_r($arr4);
?>

PHP

Posted by arkgame