PerfectTime :: PHP Demo
$isoFormat = 'Ymd\THisO';
// Make 10 random timestamps:
for ($i = 0; $i < 10; $i++) {
$theDate = mktime(
rand(0,23),
rand(0,59),
rand(0,59),
rand(1,12),
rand(1,31),
rand(1971, 2010)
);
printf(
"
- Random Time: %s
- hCalendar Mode: %s
- Span: %s
",
date('r' , $theDate),
date($isoFormat , $theDate),
date($isoFormat , $theDate),
gmdate('U' , $theDate),
date($isoFormat , $theDate)
);
}
?>