Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

  1. What will the following script output?

    <?php

    $time = strtotime ('2004/01/01');

    echo date ('H:i:s', $time);

    ?>

  2. A.

     0:00:00

    B.

     12:00:00

    C.

     00:i:00

    D.

     12:i:00

    E.

     -1

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    Explanation Not Provided


Be The First To Comment