Briefing Zend Knowledge

Which of the following will NOT instantiate a DateTime object with the current timestamp?

Which of the following will NOT instantiate a DateTime object with the current timestamp?

A.
$date = new DateTime();

B.
$date = new DateTime(‘@’ . time());

C.
$date = new DateTime(‘now’);

D.
$date = new DateTime(time());