首页 > 代码库 > mysql 时间戳与日期格式的相互转换
mysql 时间戳与日期格式的相互转换
1、UNIX时间戳转换为日期用函数: FROM_UNIXTIME()
[sql] view plain copy
- select FROM_UNIXTIME(1156219870);
输出:2006-08-22 12:11:10
2、日期转换为UNIX时间戳用函数: UNIX_TIMESTAMP()
[sql] view plain copy
- Select UNIX_TIMESTAMP(‘2006-11-04 12:23:00‘);
[sql] view plain copy
- 输出:1162614180
[sql] view plain copy
- Select UNIX_TIMESTAMP(NOW());
[sql] view plain copy
[sql] view plain copy
- 输出当前时间戳
例:mysql查询当天的记录数:
[sql] view plain copy
- $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‘);
mysql 时间戳与日期格式的相互转换
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。