PHPを使用して週末を除外した日数をカウントする方法
方法1: strtotimeとdate関数を使用する方法function countWeekdays($start, $end) { $count = 0; $current = strtotime($start); $end = strtotime($end); while ($current <= $end) { $weekday = date('N', $current); if ($weekday < 6) { // 6は土曜日、7は日曜日 $count++; } $current = strtotime('+1 >>More