What is the difference between:
$now = time();
and
$now = new DateTime();
$now->getTimestamp();
By taking into account the 32-Bit INT limitations (a.k.a year 2038 bug) is it safe to use getTimestamp() in a 32-Bit system ?
Edit:
For further information about this problem, check this link: What is a Unix timestamp and why use it?