- var_dump: documentation ( source)
- date: documentation ( source)
- strtotime: documentation ( source)
- date_default_timezone_get: documentation ( source)
<?php
var_dump(date_default_timezone_get());
for ($y = 1970; $y <= 2020; $y++) {
$ts = strtotime((string) $y);
$date = date("Y-m-d H:i:s", $ts);
$isL = date("L", $ts);
print "$y :: $date :: $isL\n";
}