PHP Date and Timestamp What will be the output of the following PHP code?If say date is 22/06/2013.printf( date("t") ) 30 22 JUNE 2013 30 22 JUNE 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 Valid TRUE Invalid FALSE Valid TRUE Invalid 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 Which method is simply an object-oriented version of date()? DateTime::setTime() DateTime::modify() DateTime::format() DateTime::setDate() DateTime::setTime() DateTime::modify() DateTime::format() DateTime::setDate() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp If the format is F then which one of the following will be returned? Day of month, without zeros Daylight saving time Day of month, with leading zero Complete text representation of month Day of month, without zeros Daylight saving time Day of month, with leading zero Complete text representation of month ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The ......... function parses an English textual date or time into a Unix timestamp. str_to_time() strtodate() strtotime() stroftime() str_to_time() strtodate() strtotime() stroftime() ANSWER DOWNLOAD EXAMIANS APP