0
我試圖在當前每週輸出當前在這一年。我使用下面顯示的代碼,但在使用星期一至星期日時不起作用。使用strtotime輸出所有星期不工作星期一至星期日,但是用於星期六PHP
for ($i = 0; $i < date("W"); $i++)
{
echo '<option value="' . date("W", strtotime("this monday - $i week")) . '">' . date("M j Y", strtotime("this sunday - $i week")) . " - " . date("M j Y", strtotime("this saturday - $i week")) .'</option>';
}
能否請你確定你是什麼意思'使用星期一Sunday'當它不工作呢? – Fotis