PHP Date and Timestamp What will the following script output?$time = strtotime ('2004/01/01');echo date ('H:i:s', $time); 00:i:00 0:00:00 12:i:00 12:00:00 00:i:00 0:00:00 12:i:00 12:00:00 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Say you want to calculate the date 45 days from the present date which one of the following statement will you use? strtotime(“+45 days”) totime(“+45”) strtotime(“-45 days”) totime(“+45 days”) strtotime(“+45 days”) totime(“+45”) strtotime(“-45 days”) totime(“+45 days”) ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The ......... function parses an English textual date or time into a Unix timestamp. strtotime() strtodate() stroftime() str_to_time() strtotime() strtodate() stroftime() str_to_time() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which function displays the web page’s most recent modification date? getlastmod() lastmod() get_last_mod() last_mod() getlastmod() lastmod() get_last_mod() last_mod() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp .......... Returns the time of sunrise for a given day / location. date-sunrise() date.sunrise() date_sunrise() datesunrise() date-sunrise() date.sunrise() date_sunrise() datesunrise() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp What will be the output of the following PHP code?If say date is 22/06/2013.printf( date("t") ) 22 30 2013 JUNE 22 30 2013 JUNE ANSWER DOWNLOAD EXAMIANS APP