$tmp_date = new DateTime();
for ($i = 1; $i <= 366; $i++) {
// 土日抜き
$week = $tmp_date->format("w");
if( $week != 0 and $week != 6 ){
echo $tmp_date->format('Y/m/d');
echo '<br>';
}
$tmp_date->modify('+1 days');
}
$tmp_date = new DateTime();
for ($i = 1; $i <= 366; $i++) {
// 土日抜き
$week = $tmp_date->format("w");
if( $week != 0 and $week != 6 ){
echo $tmp_date->format('Y/m/d');
echo '<br>';
}
$tmp_date->modify('+1 days');
}