码迷,mamicode.com
首页 > 数据库 > 详细

php+mysql中13位的时间戳

时间:2017-03-17 21:11:25      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:mysql datatime microtime 时间戳

function getMillisecond() {
   list($t1, $t2) = explode(‘ ‘, microtime());
   // return $t2 . ‘.‘ .  ceil( ($t1 * 1000) );
   return $t2 . ceil( ($t1 * 1000) );
}
echo getMillisecond();

上面方法就能获得13位的时间戳,写入到mysql表中。

 

如果原来在表中的时间是日期格式的。就这样转换一下。

举例:CU是一张表。mtime是字段,放13位时间戳的。time是原来写入的时间,格式为datatime的。

update CU set mtime = UNIX_TIMESTAMP(time)*1000;


附:

UNIX时间戳转换为日期用函数: FROM_UNIXTIME()


select FROM_UNIXTIME(1156219870);

日期转换为UNIX时间戳用函数: UNIX_TIMESTAMP()


Select UNIX_TIMESTAMP(’2006-11-04 12:23:00′);

例:mysql查询当天的记录数:


$sql=”select * from message Where DATE_FORMAT(FROM_UNIXTIME(chattime),’%Y-%m-%d’) = DATE_FORMAT(NOW(),’%Y-%m-%d’) order by id desc”;


当然大家也可以选择在PHP中进行转换

UNIX时间戳转换为日期用函数: date()


date(‘Y-m-d H:i:s‘, 1156219870);

日期转换为UNIX时间戳用函数:strtotime()


strtotime(‘2010-03-24 08:15:42‘);


php+mysql中13位的时间戳

标签:mysql datatime microtime 时间戳

原文地址:http://phpervip.blog.51cto.com/11075781/1907744

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!