$today=strtotime(date('Y-m-d"));
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供海淀網(wǎng)站建設(shè)、海淀做網(wǎng)站、海淀網(wǎng)站設(shè)計(jì)、海淀網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、海淀企業(yè)網(wǎng)站模板建站服務(wù),10余年海淀做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
$sql="select?*?from?table?where?title?like?"%關(guān)鍵詞%"?and?time."$today;
$now = strtotime(date('Y-m-d'));這樣就能獲取 今天 00:00:00時(shí) 的 時(shí)間戳
然后判斷
SubmitTime = $now and SubmitTime $now+24*3600
$a=strtotime(date('Y-m-d'));//獲取當(dāng)天凌晨的時(shí)間戳
$b=strtotime(date('Y-m-d'))+24*60*60;//獲取次天凌晨的時(shí)間戳
select * from biao where StartTime='$a' and StartTime'$b';
這樣是可行的,但是效率不是很高,呵呵,我是新手
在數(shù)據(jù)庫(kù)里添加一個(gè)字段,比如 addtime,然后添加數(shù)據(jù)的時(shí)候,將 time() 值寫(xiě)到這里,然后讀取的時(shí)候,用 where addtime=time() 就可以了。