Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

  1. To create an object and set the date to JUNE 22, 2013, which one of the following statement should be executed?

  2. A.

     $date = Date(“22 JUNE 2013”)

    B.

     $date = new Date(“JUNE 22 2013”)

    C.

     $date = DateTime(“22 JUNE 2013”)

    D.

     $date = new DateTime(“22 JUNE 2013”)

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    The dateTime() method is class constructor. You can set the date either at the time of instantiation or later by using a variety of mutators.


Be The First To Comment