Problems are not stop signs; they are guidelines.
問題的出現(xiàn)不是讓你止步,而是給你指路。———— Robert Schuller
一個(gè)循環(huán),在規(guī)定的時(shí)間范圍內(nèi),根據(jù)條件循環(huán)出來時(shí)間段,如上圖。開始時(shí)間,結(jié)束時(shí)間,時(shí)間間隔都是可變的。 特定時(shí)間范圍的時(shí)間段 第一種方法: $step = 1200;//步長 $stime = mktime(11,0,0,date('m'),date('d'),date('Y'));//開始時(shí)間 $etime = mktime(13,0,0,date('m'),date('d'),date('Y'));//結(jié)束時(shí)間 while($stime < $etime){ echo date("H:i",$stime) ; $stime += $step; ...