PHP Date and Timestamp What will be the output of the following PHP code?echo (checkdate(4,31,2010) ? 'Valid' : 'Invalid'); Valid TRUE Invalid FALSE Valid TRUE Invalid FALSE ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The date() function returns ___ representation of the current date and/or time. String Float Integer Boolean String Float Integer Boolean ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which one of the following format parameter can be used to identify timezone? T E I N T E I N ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp If the format is F then which one of the following will be returned? Daylight saving time Day of month, with leading zero Day of month, without zeros Complete text representation of month Daylight saving time Day of month, with leading zero 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 code?If say date is 22/06/2013.echo "Today is ".date("F d, Y") 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 Today is June 22, 2013 Today is 06-22-2013 Today is 22 June, 2013 ANSWER DOWNLOAD EXAMIANS APP