Parse about any English textual datetime description into a Unix timestamp
Syntax
strtotime ( string $time [, int $now = time() ] ) : int
Parameters
time
A date/time string. Valid formats are explained in Date and Time Formats.
now
The timestamp which is used as a base for the calculation of relative dates.
Return
Returns a timestamp on success, FALSE otherwise.
Examples
1 · time
<? $time = "t"; $return = strtotime($time); echo $return; ?>
1695356573
2 · now
<? $time = "t"; $now = time(); $return = strtotime($time, $now); echo $return; ?>
1695356573
3 · 1
<? echo strtotime("now") . PHP_EOL . PHP_EOL; echo strtotime("-1 second") . PHP_EOL; echo strtotime("-1 minute") . PHP_EOL; echo strtotime("-1 hour") . PHP_EOL; echo strtotime("-1 day") . PHP_EOL; echo strtotime("-1 week") . PHP_EOL; echo strtotime("-1 month") . PHP_EOL; echo strtotime("-1 year") . PHP_EOL; echo strtotime("-1 year 1 month 1 week 1 day 1 hour 1 minute 1 second") . PHP_EOL . PHP_EOL; echo strtotime("1 second") . PHP_EOL; echo strtotime("1 minute") . PHP_EOL; echo strtotime("1 hour") . PHP_EOL; echo strtotime("1 day") . PHP_EOL; echo strtotime("1 week") . PHP_EOL; echo strtotime("1 month") . PHP_EOL; echo strtotime("1 year") . PHP_EOL; echo strtotime("1 year 1 month 1 week 1 day 1 hour 1 minute 1 second") . PHP_EOL . PHP_EOL; echo strtotime("last monday") . PHP_EOL; echo strtotime("next monday") . PHP_EOL . PHP_EOL; echo strtotime("1 january 2000") . PHP_EOL; echo strtotime("1 january 3000"); ?>
1695331373 1695331372 1695331313 1695327773 1695244973 1694726573 1692652973 1663795373 1667082234 1695331374 1695331433 1695334973 1695417773 1695936173 1697923373 1726953773 1730240634 1694995200 1695600000 946684800 32503680000
4 · 2
<? $string = "next monday"; $timestamp = strtotime($string); if ($timestamp === false) { echo "\"$string\" is invalid"; } else { echo "\"$string\" is " . date('l \t\h\e jS \o\f F Y \a\t h:i:s A', $timestamp); } ?>
"next monday" is Monday the 25th of September 2023 at 12:00:00 AM