Restoration
8/6/2016 - 3:24 PM

3の倍数のときだけアホになる.php

3の倍数のときだけアホになる.php

<?php
/*
//今月の日曜日をすべて表示
$year = date('Y');
$month = date('m');
echo '<h1>'.$year.'年'.$month.'月の日曜日</h1>';
for($i=1; $i <= 31; $i++){
	if(checkdate($month,$i,$year)){
		$week = date('w',mktime(0,0,0,$i,$month,$year));
		if($week == 0){
			echo $i .'日';
		}
	}
}

*/

//3の倍数のときだけアホになる
$cnt = 3;
for($i=0; $i <= 100; $i++){
	if($i == $cnt){
		echo $i."は3の倍数!".'<br />';
		$cnt = $cnt + 3;
		continue;
	}
	echo $i.'<br />';
}