Logo

Programming-Idioms

History of Idiom 61 > diff from v5 to v6

Edit summary for version 6 by :

Version 5

2015-07-31, 20:39:17

Version 6

2015-08-19, 15:18:59

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();
Comments bubble
/* function time() returns unix timestamp */