所以,我試圖編寫一個簡單的函數,在一天的特定時間更改背景顏色,但某些工作不正確。PHP:在一天中的特定時間更改CSS屬性
當我運行PHP時,頁面上的背景顏色是空白的,並且HTML有background-color: ;
。它沒有達到blue
或black
屬性,我想知道爲什麼。
任何想法?
PHP:
<?php
function backgroundColor(){
$backgroundColor = '';
if (date('H:i') >= strtotime('06:00') && date('H:i') <= strtotime('20:00')){
$backgroundColor == 'blue';
} else {
$backgroundColor == 'black';
}
return $backgroundColor;
}
?>
HTML:
<html>
<head>
<title></title>
<style>
body{
background-color: <?=backgroundColor()?> ;
}
</style>
</head>
<body>
<?php echo date('H:i')?>
</body>
</html>
'$ =的backgroundColor '藍色';''沒有$的backgroundColor == '藍',' –
@MikeW請參閱 「當我運行PHP ......」 – Keven
我認爲這將是更好的很多更改'
'標記中的班級,而不是直接在標題中更改樣式。 – Jeemusu