Skip to content

Instantly share code, notes, and snippets.

@Restoration
Last active August 6, 2016 15:24
Show Gist options
  • Select an option

  • Save Restoration/13dd90b647e6848370ae4aea8ffa8bb1 to your computer and use it in GitHub Desktop.

Select an option

Save Restoration/13dd90b647e6848370ae4aea8ffa8bb1 to your computer and use it in GitHub Desktop.
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 />';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment