今日から1年先までの年月日出力(日付の加算)

$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');
}