Last active
August 6, 2016 15:24
-
-
Save Restoration/13dd90b647e6848370ae4aea8ffa8bb1 to your computer and use it in GitHub Desktop.
3の倍数のときだけアホになる.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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