PHP Date and Timestamp You must make a call to ................... to specify what time zone you want calculations to take place in before calling any date functions. date_default_timezoneset() date_defaulttimezone_set() datedefault_timezone_set() date_default_timezone_set() date_default_timezoneset() date_defaulttimezone_set() datedefault_timezone_set() date_default_timezone_set() 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'); Invalid FALSE Valid TRUE Invalid FALSE Valid TRUE ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The date() function returns ___ representation of the current date and/or time. String Boolean Float Integer String Boolean Float Integer ANSWER DOWNLOAD EXAMIANS APP
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, February 24th 2008 Sunday, 24 02 2008 Sunday, 02 24 2008 Sunday, 24th February 2008 Sunday, February 24th 2008 Sunday, 24 02 2008 Sunday, 02 24 2008 Sunday, 24th February 2008 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, with leading zero Daylight saving time Day of month, without zeros Complete text representation of month Day of month, with leading zero Daylight saving time Day of month, without zeros Complete text representation of month 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") ) 30 JUNE 2013 22 30 JUNE 2013 22 ANSWER DOWNLOAD EXAMIANS APP