Logo

Programming-Idioms

History of Idiom 61 > diff from v17 to v18

Edit summary for version 18 by :

Version 17

2015-08-22, 23:13:16

Version 18

2015-08-26, 21:13:40

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.