假期(anouka和圣诞节)我想展示我网站的不同版本。
我想改变图像,css等...
有很快这样做吗?还是特殊技术?
我的网站是在php中,我使用apache
答案 0 :(得分:9)
<?php
$christmas = "12-25";
$todays_date = date("m-d");
if($todays_date == $christmas) {
// Load a different stylesheet
} else {
// Load the stylesheet for the rest of the yeat
}
?>
这将在圣诞节每年加载不同的样式表。可以通过更改$christmas
变量将其更改为任何其他日期。我想这就是你要找的......