字符串转成date
$str =date("Y-m-d H:i:s",strtotime("2011-12-12 14:23:01"));
echo $str;
date规则之间的转换,
例如 "2011-12-12 14:23:01 转换为 "2011-12-12
$d = strtotime(date('Y-m-d H:i:s'));
echo date('Y-m-d H:i:s');
echo "</br>";
echo $d;
echo "</br>";
$t = date('Y-m-d',$d);
echo date('Y-m-d H:i:s');
echo "</br>";
echo $d;
echo "</br>";
$t = date('Y-m-d',$d);
strtotime 可以转换成时间戳,作为转换的中介,将时间在不同的时间格式之间相互转换。