PHP Date and Timestamp What will be the output of the following code?If say date is 22/06/2013.echo "Today is ".date("F d, Y") Today is June 22, 2013 Today is 06-22-2013 Today is 22 June, 2013 Today is 22-06-2013 Today is June 22, 2013 Today is 06-22-2013 Today is 22 June, 2013 Today is 22-06-2013 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which method is simply an object-oriented version of date()? DateTime::setTime() DateTime::format() DateTime::setDate() DateTime::modify() DateTime::setTime() DateTime::format() DateTime::setDate() DateTime::modify() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The ......... function parses an English textual date or time into a Unix timestamp. stroftime() str_to_time() strtodate() strtotime() stroftime() str_to_time() strtodate() strtotime() 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") ) 2013 22 30 JUNE 2013 22 30 JUNE ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which of the following statements can be used to add two months to the existing date? $date->modify(‘2+ months’); $date = modify(‘2+ months’); $date->modify(‘+2 months’); $date = modify(‘+2 months’); $date->modify(‘2+ months’); $date = modify(‘2+ months’); $date->modify(‘+2 months’); $date = modify(‘+2 months’); ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp How many methods does the DateTime class have? 10 9 11 8 10 9 11 8 ANSWER DOWNLOAD EXAMIANS APP