PHP Date and Timestamp What will be the output of the following PHP code?If say date is 22/06/2013.printf( date("t") ) 2013 30 22 JUNE 2013 30 22 JUNE 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'); Valid Invalid TRUE FALSE Valid Invalid TRUE FALSE 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); 00:i:00 12:00:00 12:i:00 0:00:00 00:i:00 12:00:00 12:i:00 0:00:00 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? savingTime() getTranitions() getOffset() ISODate() savingTime() getTranitions() getOffset() ISODate() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp What would happen if the following script were run on a Windows server set to Moscow, Russia’s time zone?echo gmmktime(0, 0, 0, 1, 1, 1970); It would output nothing It would output the number -1 It would output the number 1 It would output the number 0 It would output nothing It would output the number -1 It would output the number 1 It would output the number 0 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp How many constants does the DateTime class have? 8 9 10 11 8 9 10 11 ANSWER DOWNLOAD EXAMIANS APP