PHP Date and Timestamp ................Checks a date for numeric validity. check_date verifydate checkdate Verify_date check_date verifydate checkdate Verify_date ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which method enables you to calculate whether daylight saving time is in force at a specific date and time? getOffset() ISODate() savingTime() getTranitions() getOffset() ISODate() savingTime() getTranitions() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp What will the following script output?$time = strtotime ('2004/01/01');echo date ('H:i:s', $time); 12:00:00 0:00:00 00:i:00 12:i:00 12:00:00 0:00:00 00:i:00 12:i:00 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which one of the following format parameter can be used to identify timezone? I N T E I N T E ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which of the following is the right way to use the DateTime class? $date = new DateTime(); $date = class DateTime; $date = get_Class(DateTime); $date = new class DateTime(); $date = new DateTime(); $date = class DateTime; $date = get_Class(DateTime); $date = new class DateTime(); 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, 02 24 2008 Sunday, February 24th 2008 Sunday, 24th February 2008 Sunday, 24 02 2008 Sunday, 02 24 2008 Sunday, February 24th 2008 Sunday, 24th February 2008 Sunday, 24 02 2008 ANSWER DOWNLOAD EXAMIANS APP