白天不懂夜的黑

老王于2020-09-15发布在亲友圈 / 被围观1.59k次

PHP根据不同时段显示不同的网站css样式风格

PHP

date_default_timezone_set('PRC'); //设定时区,PRC就是中国
$hour = date('H');
if($hour <= 18 && $hour > 6){
echo '[link rel="stylesheet" type="text/css" media="all" href="day.css"]';
}else{
echo '[link rel="stylesheet" type="text/css" media="all" href="night.css"]';
}
PHP

【link rel="stylesheet" type="text/css" 
href="
 12) echo "days.css"; elseif ($hour < 24) echo "night.css"; 
?>
" 】
  • 阿和说道: LV.6

    标题这么诗意,点进来居然是代码

    1. 老王说道:

      回复 阿和: 哈哈,代码如诗嘛 :jx:

  • 发表回复

    您的邮箱地址不会被公开。 必填项已用 * 标注