What Will Be The Output Of The Following Code If Say Date Is #175
What will be the output of the following code? (If say date is 22/06/2013.)</p> <pre><code class="language-php" line="1"> <?php echo "Today is ".date("F d, Y"); ?> </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs107 PHP: Hypertext Preprocessor. It can also be found in gs gs107 PHP File and Session Handling - PHP Date and Timestamp - Quiz No.1.
What will be the output of the following code? (If say date is 22/06/2013.)
<?php echo "Today is ".date("F d, Y"); ?>
Today is 22 June, 2013
Today is 22-06-2013
Today is 06-22-2013
Today is June 22, 2013