PHP Date and Timestamp The getdate() function returns A string A floating-point number A Boolean An array An integer A string A floating-point number A Boolean An array An integer 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); 0:00:00 12:00:00 00:i:00 12:i:00 0:00:00 12:00:00 00:i:00 12:i:00 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The date() function returns ___ representation of the current date and/or time. Boolean String Float Integer Boolean String Float Integer ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp If the format is F then which one of the following will be returned? Daylight saving time Day of month, with leading zero Complete text representation of month Day of month, without zeros Daylight saving time Day of month, with leading zero Complete text representation of month Day of month, without zeros 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? It depends on the number of hours between the local time zone and GMT The two will never match There is no difference None of these 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 The two will never match There is no difference None of these The two will only match if the local time zone is GMT 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? totime(“+45”) strtotime(“+45 days”) totime(“+45 days”) strtotime(“-45 days”) totime(“+45”) strtotime(“+45 days”) totime(“+45 days”) strtotime(“-45 days”) ANSWER DOWNLOAD EXAMIANS APP