Home > デート


PHPで土曜日を除く1年間の日付を設定する方法

<?php $startDate = date('Y-m-d'); // 現在の日付を取得 $endDate = date('Y-m-d', strtotime('+1 year')); // 1年後の日付を取得 $currentDate = $startDate; while ($currentDate <= $endDate) { $dayOfWeek = date('N', strtotime($currentDate)); // 曜日を取得 (1: 月曜日, 2: 火曜日, ... , 6: 土曜日, 7: 日曜日) if ($dayOfWeek != 6) >>More