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, 24th February 2008 Sunday, 02 24 2008 Sunday, 24 02 2008 Sunday, February 24th 2008 Sunday, 24th February 2008 Sunday, 02 24 2008 Sunday, 24 02 2008 Sunday, February 24th 2008 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The ......... function parses an English textual date or time into a Unix timestamp. strtodate() str_to_time() stroftime() strtotime() strtodate() str_to_time() stroftime() strtotime() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which of the following is the right way to use the DateTime class? $date = get_Class(DateTime); $date = new class DateTime(); $date = class DateTime; $date = new DateTime(); $date = get_Class(DateTime); $date = new class DateTime(); $date = class DateTime; $date = new DateTime(); ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The date() function returns ___ representation of the current date and/or time. Integer String Float Boolean Integer String Float Boolean 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 Which one of the following format parameter can be used to identify timezone? E N T I E N T I ANSWER DOWNLOAD EXAMIANS APP