php 判断白天黑夜

<?php
$h=date('H');
if($h>=8 && $h<=20)
echo '白天';
else
echo '夜晚';
?>

 

posted @ 2016-02-27 15:07  fleam  阅读(338)  评论(0编辑  收藏  举报