在数据库教程设计时必须注意时间字段为int(11)这样,保存在数据库的是一个数字型日期时间戳,我们可以用mktime函数求出当前日期的时间戳进行加减就OK了,下面看实例//一个月$lastMonth=mktime(date(‘h’),date(‘i’),date(‘s’),date(‘m’)-1,date(‘d’),date(‘y’));$where.=”dtime>$lastMonth”;//三个月$lastThreeMonth=mktime(date(‘h’),date(‘i’)...
查看全文