PHP Date and Timestamp Which method enables you to calculate whether daylight saving time is in force at a specific date and time? ISODate() getOffset() savingTime() getTranitions() ISODate() getOffset() savingTime() getTranitions() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The getdate() function returns A Boolean A floating-point number An integer An array A string A Boolean A floating-point number An integer An array A string ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Among the four PHP DateTimeZone classes given below how many are nonstatic?1. _construct()2. getName()3. getOffset()4. getTransitions() 3 1 2 4 3 1 2 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp How many methods does the DateTime class have? 10 8 11 9 10 8 11 9 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which of the following statements can be used to set the time zone in individual scripts? date_default_timezone_set(‘Europe/London’); date_default_timezone(‘Europe/London’); date_set_timezone(‘Europe/London’); date_set_default_timezone(‘Europe/London’); date_default_timezone_set(‘Europe/London’); date_default_timezone(‘Europe/London’); date_set_timezone(‘Europe/London’); date_set_default_timezone(‘Europe/London’); ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp What will be the output of the following PHP code?echo (checkdate(4,31,2010) ? 'Valid' : 'Invalid'); Invalid FALSE Valid TRUE Invalid FALSE Valid TRUE ANSWER DOWNLOAD EXAMIANS APP