Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

time

Description

Return current Unix timestamp

Syntax

time(): int

Return

Returns the current time measured in the number of seconds since the Unix Epoch (January 1 1970 00:00:00 GMT).

Examples

1 · void

<?

$return = time();

echo $return;

?>
1701388839

2

<?

$return = time();

$second = 1;
$minute = $second * 60;
$hour = $minute * 60;
$day = $hour * 24;
$week = $day * 7;
$month = $day * 30;
$year = $day * 365;

$format = "Y-m-d H:i:s";

echo date($format, $return) . " now". PHP_EOL;
echo date($format, $return + $second) . " next second" . PHP_EOL;
echo date($format, $return + $minute) . " next minute" . PHP_EOL;
echo date($format, $return + $hour) . " next hour" . PHP_EOL;
echo date($format, $return + $day) . " next day" . PHP_EOL;
echo date($format, $return + $week) . " next week" . PHP_EOL;
echo date($format, $return + $month) . " next month" . PHP_EOL;
echo date($format, $return + $year) . " next year";

?>
2023-12-01 00:00:39 now
2023-12-01 00:00:40 next second
2023-12-01 00:01:39 next minute
2023-12-01 01:00:39 next hour
2023-12-02 00:00:39 next day
2023-12-08 00:00:39 next week
2023-12-31 00:00:39 next month
2024-11-30 00:00:39 next year
HomeMenu