Examveda
Examveda

What will be the output of the following PHP code if date is 24/02/2008?
<?php
$date = new DateTime();
echo $date->format('l,F,js,Y')
?>

A. Sunday, February 24th 2008

B. Sunday, 02 24 2008

C. Sunday, 24 02 2008

D. Sunday, 24th February 2008

Answer: Option A

Solution(By Examveda Team)

The format() method displays the date in same way as standard date function().

This Question Belongs to PHP >> Date And Timestamp

Join The Discussion

Related Questions on Date and Timestamp