Date and Time Handling
'); ?>
1) {
printf( "Only %d day%s left!
\n", $days, $days == 1 ? "" : "s");
} else {
$hours = $diff / 3600;
if ($hours > 1) {
printf( "Only %d hour%s left!
\n", $hours, $hours == 1 ? "" : "s");
} else {
echo "Log out and hide under your table!
\n";
}
}
?>');?>
1) {
$out=sprintf( "Only %d day%s left!
\n", $days, $days == 1 ? "" : "s");
} else {
$hours = $diff / 3600;
if ($hours > 1) {
$out=sprintf( "Only %d hour%s left!
\n", $hours, $hours == 1 ? "" : "s");
} else {
$out = "Log out and hide under your table!
\n";
}
}
output($out)
;?>
Calendar Conversions
- Converts between calendars (Julian, Gregorian, Mayan, etc)