如2011年2月16日 11点44分36秒
用PHP这样转.
date_default_timezone_set('GMT');//从你的结果时间戳来看,是GMT的时间,与中国差8小时.
echo strtotime('20110216 114436');//使用strtotime是最简单的方法.
?>
mysql 这样转
mysql> SELECT UNIX_TIMESTAMP('2011-02-16 11:44:36');
shell这样转
date -d '02/10/2011 11:44:36' +%s
改回去 date -d @1297367040
阅读(670) | 评论(0) | 转发(0) |