strtotime()是php中的时间函数;其功能是:将任何字符串形式的日期,时间转换成对应的Unix 时间戳。
示例:
<?php
$str='2015-05-20 15:21:23';
echo strtotime($str);
//转换为时间戳:1432106483
?>
strtotime()是php中的时间函数;其功能是:将任何字符串形式的日期,时间转换成对应的Unix 时间戳。
示例:
<?php
$str='2015-05-20 15:21:23';
echo strtotime($str);
//转换为时间戳:1432106483
?>