PHP Date and Timestamp What would happen if the following script were run on a Windows server set to Moscow, Russia’s time zone?echo gmmktime(0, 0, 0, 1, 1, 1970); It would output the number 0 It would output nothing It would output the number 1 It would output the number -1 It would output the number 0 It would output nothing It would output the number 1 It would output the number -1 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which method enables you to calculate whether daylight saving time is in force at a specific date and time? getOffset() getTranitions() savingTime() ISODate() getOffset() getTranitions() savingTime() ISODate() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp How many methods does the DateTime class have? 10 8 9 11 10 8 9 11 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which of the following is the right way to use the DateTime class? $date = get_Class(DateTime); $date = class DateTime; $date = new DateTime(); $date = new class DateTime(); $date = get_Class(DateTime); $date = class DateTime; $date = new DateTime(); $date = new class DateTime(); ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp What will be the output of the following PHP code?If say date is 22/06/2013.printf( date("t") ) 2013 22 30 JUNE 2013 22 30 JUNE 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() 1 2 4 3 1 2 4 3 ANSWER DOWNLOAD EXAMIANS APP