使用PHP怎么对指定的时间段进行判断
小黑 PHP2022-09-11
PHP根据不同时间段输出不同的问候语
?phpdate_default_timezone_set('Asia/Shanghai');$hour=date("H");if($hour0$hour6)echo"天还没亮,夜猫子,要注意身体哦!";elseif($hour6$hour12)echo"上午好!";elseif($hour12$hour14)echo"中午好!午休时间哦,朋友一定是不习惯午睡的吧?!";elseif($hour14$hou
网络 web前端开发2016-12-29