我想在我的for循環中使用static
關鍵字。在for循環中使用static關鍵字?
可能嗎?如果是,那麼如何?
這裏是我的代碼:
$current_time = date('h:i A');
<select>
for($i = 0; $i <= 5; $i++) {
if ($i=0) {
echo "<option>" . date("h:i A", $current_time) . "</option>";
}else{
static $tNow = strtotime("+15 minutes",strtotime($current_time));
echo "<option>" . date("h:i A", $tNow) . "</option>";
}
}
<select>
當我使用static
關鍵字,我發現了一個PHP錯誤。
我想顯示一個<select>
元素,每個選項爲15分鐘步驟,如12:00
,12:15
,12:30
。
**你究竟是想通過這個**達到**? –
但是,爲什麼你需要使用它? – malutki5200
通過使用** static **關鍵字,您的目標是什麼?你有沒有閱讀何時/在哪些情況下我們可以使用這個http://php.net/manual/en/language.oop5.static.php? –