Logo

Programming-Idioms

History of Idiom 61 > diff from v37 to v38

Edit summary for version 38 by ancarda:
[PHP] Added documentation URL

Version 37

2019-09-26, 20:40:34

Version 38

2019-09-27, 10:00:34

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Code
$d = time();
Code
$d = time();
Comments bubble
Function time() returns unix timestamp.
Comments bubble
Function time() returns unix timestamp.
Doc URL
https://www.php.net/time