full source of date examples [ line 1 - 14 ] | download date examples
| 1 | <?php |
| 2 | $today[] = date("F j, Y, g:i a"); |
| 3 | $today[] = date("m.d.y"); |
| 4 | $today[] = date("j, n, Y"); |
| 5 | $today[] = date("Ymd"); |
| 6 | $today[] = date('h-i-s, j-m-y, it is w Day z '); |
| 7 | $today[] = date('it is the jS day.'); |
| 8 | $today[] = date("D M j G:i:s T Y"); |
| 9 | // this is logical BUT wrong |
| 10 | $today[] = date('H:m:s m is month'); |
| 11 | // this is right |
| 12 | $today[] = date("H:i:s"); |
| 13 | for($x=0;$x<count($today);$x++) echo '<br>'.$today[$x]; |
| 14 | ?> |
17 hits by 7 users in the last 30 minutes.