当前位置:数据库 > MySQL >>

mysql 时间戳与日期格式的相互转换

mysql 时间戳与日期格式的相互转换

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

select FROM_UNIXTIME(1156219870);
     输出:2006-08-22 12:11:10


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


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

输出:1162614180
 
    Select UNIX_TIMESTAMP(NOW());
   
      输出当前时间戳

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

$sql=”select * from yizuotu_net 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');
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,