我有一個while
循環,它給出從00:00到23:30的輸出。但我想要與for
循環的結果相同。從while更改循環到
代碼:
<select>
<?php
$start_time = "00:00:00";
$end_time = "23:00:00";
while(strtotime($start_time) <= strtotime($end_time)){?>
<option value="<?php date("H:i:s", strtotime($start_time))?>"> <?php echo date("H:i A", strtotime($start_time))?></option>
<?php $start_time = date("H:i:s", strtotime("$start_time + 15 minutes"));
}
?></select>
不會你需要'while'或'for'工作數組...? – webeno 2014-09-19 06:37:46
爲什麼你想改變它,如果它的工作? while循環可能是更好的解決方案。 – TiMESPLiNTER 2014-09-19 06:38:11
爲什麼你想去for循環?你將不會從中得到好處。 – 2014-09-19 06:40:08