The date() function returns ___ representation of the current date and/or time. Boolean Integer String Float TRUE ANSWER : ? YOUR ANSWER : ?
The getdate() function returns An array A Boolean A string A floating-point number An integer TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following format parameter can be used to identify timezone? N T I E TRUE ANSWER : ? YOUR ANSWER : ?
What will the following script output?<br/>$time = strtotime ('2004/01/01');<br/>echo date ('H:i:s', $time); 0:00:00 12:i:00 00:i:00 12:00:00 TRUE ANSWER : ? YOUR ANSWER : ?
Which method enables you to calculate whether daylight saving time is in force at a specific date and time? ISODate() savingTime() getOffset() getTranitions() TRUE ANSWER : ? YOUR ANSWER : ?
What would happen if the following script were run on a Windows server set to Moscow, Russia’s time zone?<br/>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 TRUE ANSWER : ? YOUR ANSWER : ?
The ......... function parses an English textual date or time into a Unix timestamp. stroftime() str_to_time() strtodate() strtotime() TRUE ANSWER : ? YOUR ANSWER : ?
Say you want to calculate the date 45 days from the present date which one of the following statement will you use? totime(“+45 days”) strtotime(“+45 days”) strtotime(“-45 days”) totime(“+45”) TRUE ANSWER : ? YOUR ANSWER : ?