PHP Date and Timestamp The ......... function parses an English textual date or time into a Unix timestamp. strtodate() str_to_time() stroftime() strtotime() strtodate() str_to_time() stroftime() strtotime() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The getdate() function returns A Boolean A floating-point number An array An integer A string A Boolean A floating-point number An array An integer A string ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which of the following statements can be used to add two months to the existing date? $date = modify(‘2+ months’); $date->modify(‘2+ months’); $date = modify(‘+2 months’); $date->modify(‘+2 months’); $date = modify(‘2+ months’); $date->modify(‘2+ months’); $date = modify(‘+2 months’); $date->modify(‘+2 months’); ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp What is the difference, in seconds, between the current timestamp in the GMT time zone and the current timestamp in your local time zone? The two will never match The two will only match if the local time zone is GMT It depends on the number of hours between the local time zone and GMT There is no difference None of these The two will never match The two will only match if the local time zone is GMT It depends on the number of hours between the local time zone and GMT There is no difference None of these ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which method is simply an object-oriented version of date()? DateTime::format() DateTime::setDate() DateTime::setTime() DateTime::modify() DateTime::format() DateTime::setDate() DateTime::setTime() DateTime::modify() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp What will be the output of the following code?If say date is 22/06/2013.echo "Today is ".date("F d, Y") Today is 22-06-2013 Today is 22 June, 2013 Today is 06-22-2013 Today is June 22, 2013 Today is 22-06-2013 Today is 22 June, 2013 Today is 06-22-2013 Today is June 22, 2013 ANSWER DOWNLOAD EXAMIANS APP