当前位置:Gxlcms > PHP教程 > PHP如何按日期查询

PHP如何按日期查询

时间:2021-07-01 10:21:17 帮助过:8人阅读

MYSQL里字段addtime为时间戳
我现在须要这样查询
xx.php?u=20130328&page=1 &page=这个用来分页
这样查询20130328或20130329这一天数据


'> '>'>'>


回复讨论(解决方案)

FROM_UNIXTIME() UNIX时间戳转换为日期
UNIX_TIMESTAMP() 日期转换为UNIX时间戳

$u = $_GET['u'];$starttime = strtotime($u.'000000');$endtime =  strtotime($u.'235959');$runSql = mysql_query("select * from cmsdj_song where addtime > '$starttime' and addtime<'$endtime' order by id desc limit ".$p.",".$col."");

人气教程排行