-
What will be the output of the following code? If say date is 30/05/2018.
<?php
echo "Today is ".date("F d, Y")
?>
-
- Today is May 30, 2018
- Error
- Nothing
- 30/05/2018
- None of these
Correct Option: A
F is the parameter for complete text representation of month, d for day of month, and Y for 4 digit representation of year.