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 2013 22 30 JUNE 2013 22 30 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which function displays the web page’s most recent modification date? get_last_mod() lastmod() last_mod() getlastmod() get_last_mod() lastmod() last_mod() getlastmod() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The date() function returns ___ representation of the current date and/or time. Integer String Boolean Float Integer String Boolean Float 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() 4 1 3 2 4 1 3 2 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which one of the following function is useful for producing a timestamp based on a given date and time. mtime() mrtime() mktime() time() mtime() mrtime() mktime() time() 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:i:00 0:00:00 12:00:00 00:i:00 12:i:00 0:00:00 12:00:00 ANSWER DOWNLOAD EXAMIANS APP