PHP Date and Timestamp Which one of the following function is useful for producing a timestamp based on a given date and time. mktime() time() mtime() mrtime() mktime() time() mtime() mrtime() 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 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 It would output nothing ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which function displays the web page’s most recent modification date? last_mod() get_last_mod() lastmod() getlastmod() last_mod() get_last_mod() lastmod() getlastmod() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp .......... Returns the time of sunrise for a given day / location. datesunrise() date-sunrise() date.sunrise() date_sunrise() datesunrise() date-sunrise() date.sunrise() date_sunrise() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp ................ Formats a local time or date according to locale settings. stritime strftime strgtime strhtime stritime strftime strgtime strhtime 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'); TRUE Invalid FALSE Valid TRUE Invalid FALSE Valid ANSWER DOWNLOAD EXAMIANS APP