Discussion :: PHP - CS
-
What will be the output of the following code? If say date is 22/06/2013.
<?php
echo "Today is ".date("F d, Y")
?>
Answer : Option D
Explanation :
F is the parameter for complete text representation of month, d for day of month, and Y for 4 digit representation of year.
Be The First To Comment