PHP Date and Timestamp What will be the output of the following PHP code?If say date is 22/06/2013.printf( date("t") ) JUNE 30 2013 22 JUNE 30 2013 22 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp How many methods does the DateTime class have? 8 11 9 10 8 11 9 10 ANSWER DOWNLOAD EXAMIANS APP
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_timezone_set() date_defaulttimezone_set() datedefault_timezone_set() date_default_timezoneset() date_default_timezone_set() date_defaulttimezone_set() datedefault_timezone_set() date_default_timezoneset() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The ......... function parses an English textual date or time into a Unix timestamp. str_to_time() stroftime() strtotime() strtodate() str_to_time() stroftime() strtotime() strtodate() 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:i:00 12:00:00 0:00:00 00:i:00 12:i:00 12:00:00 0:00:00 00:i:00 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Among the four PHP DateTimeZone classes given below how many are nonstatic?1. _construct()2. getName()3. getOffset()4. getTransitions() 2 3 1 4 2 3 1 4 ANSWER DOWNLOAD EXAMIANS APP