PHP Date and Timestamp Which one of the following function is useful for producing a timestamp based on a given date and time. mtime() mktime() time() mrtime() mtime() mktime() time() mrtime() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The getdate() function returns A string An integer A floating-point number An array A Boolean A string An integer A floating-point number An array A Boolean ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which of the following statements can be used to set the time zone in individual scripts? date_set_default_timezone(‘Europe/London’); date_default_timezone(‘Europe/London’); date_set_timezone(‘Europe/London’); date_default_timezone_set(‘Europe/London’); date_set_default_timezone(‘Europe/London’); date_default_timezone(‘Europe/London’); date_set_timezone(‘Europe/London’); date_default_timezone_set(‘Europe/London’); ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which function displays the web page’s most recent modification date? lastmod() getlastmod() get_last_mod() last_mod() lastmod() getlastmod() get_last_mod() last_mod() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which method is simply an object-oriented version of date()? DateTime::setDate() DateTime::format() DateTime::setTime() DateTime::modify() DateTime::setDate() DateTime::format() DateTime::setTime() DateTime::modify() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp What will be the output of the following PHP code if date is 24/02/2008?$date = new DateTime();echo $date->format('l,F,js,Y') Sunday, 02 24 2008 Sunday, February 24th 2008 Sunday, 24th February 2008 Sunday, 24 02 2008 Sunday, 02 24 2008 Sunday, February 24th 2008 Sunday, 24th February 2008 Sunday, 24 02 2008 ANSWER DOWNLOAD EXAMIANS APP