PHP Date and Timestamp What will be the output of the following PHP code if date is 24/02/2008?$date = new DateTime();echo $date->format('l,F,js,Y') Sunday, 24th February 2008 Sunday, 24 02 2008 Sunday, 02 24 2008 Sunday, February 24th 2008 Sunday, 24th February 2008 Sunday, 24 02 2008 Sunday, 02 24 2008 Sunday, February 24th 2008 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which method is simply an object-oriented version of date()? DateTime::format() DateTime::setDate() DateTime::setTime() DateTime::modify() DateTime::format() DateTime::setDate() DateTime::setTime() DateTime::modify() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which function displays the web page’s most recent modification date? last_mod() lastmod() get_last_mod() getlastmod() last_mod() lastmod() get_last_mod() getlastmod() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp How many constants does the DateTime class have? 8 11 10 9 8 11 10 9 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Among the four PHP DateTimeZone classes given below how many are nonstatic?1. _construct()2. getName()3. getOffset()4. getTransitions() 2 3 1 4 2 3 1 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp What will be the output of the following PHP code?If say date is 22/06/2013.printf( date("t") ) JUNE 22 2013 30 JUNE 22 2013 30 ANSWER DOWNLOAD EXAMIANS APP