PHP Date and Timestamp What will the following script output?$time = strtotime ('2004/01/01');echo date ('H:i:s', $time); 0:00:00 00:i:00 12:00:00 12:i:00 0:00:00 00:i:00 12:00:00 12:i: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 days”) strtotime(“-45 days”) totime(“+45”) strtotime(“+45 days”) totime(“+45 days”) strtotime(“-45 days”) totime(“+45”) ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp If the format is F then which one of the following will be returned? Complete text representation of month Daylight saving time Day of month, with leading zero Day of month, without zeros Complete text representation of month Daylight saving time Day of month, with leading zero Day of month, without zeros ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The getdate() function returns A string An array A floating-point number An integer A Boolean A string An array A floating-point number An integer A Boolean ANSWER DOWNLOAD EXAMIANS APP
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 Among the four PHP DateTimeZone classes given below how many are static?1. listAbbreviations()2. getName()3. getOffset()4. listIdentifiers() 4 1 3 2 4 1 3 2 ANSWER DOWNLOAD EXAMIANS APP