PHP Date and Timestamp Which of the following functions do not return a timestamp?1. time()2. date()3. strtotime()4. localtime()5. gmmktime() Option 2 and 4 Option 2 and 4 Option 1 and 5 Option 1 and 4 Option 2 and 4 Option 2 and 4 Option 1 and 5 Option 1 and 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") ) 22 30 2013 JUNE 22 30 2013 JUNE ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp ................ Formats a local time or date according to locale settings. strgtime strhtime stritime strftime strgtime strhtime stritime strftime ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which method is simply an object-oriented version of date()? DateTime::modify() DateTime::setDate() DateTime::setTime() DateTime::format() DateTime::modify() DateTime::setDate() DateTime::setTime() DateTime::format() ANSWER DOWNLOAD EXAMIANS APP
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 22 June, 2013 Today is 06-22-2013 Today is 22-06-2013 Today is June 22, 2013 Today is 22 June, 2013 Today is 06-22-2013 Today is 22-06-2013 Today is June 22, 2013 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp What will be the output of the following PHP code?echo (checkdate(4,31,2010) ? 'Valid' : 'Invalid'); FALSE TRUE Valid Invalid FALSE TRUE Valid Invalid ANSWER DOWNLOAD EXAMIANS APP