Logo

Programming-Idioms

History of Idiom 61 > diff from v7 to v8

Edit summary for version 8 by :

Version 7

2015-08-20, 11:22:46

Version 8

2015-08-20, 11:23:06

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
$t = time;
Code
$d = time;