adplus-dvertising
frame-decoration

Question

What will be the output of the following code? If say date is 22/06/2013.
<?php
    echo "Today is ".date("F d, Y")
    ?>

a.

Today is 22 June, 2013

b.

Today is 22-06-2013

c.

Today is 06-22-2013

d.

Today is June 22, 2013

Posted under PHP

Answer: (d).Today is June 22, 2013

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output of the following code? If say date is 22/06/2013.