PHP Date and Timestamp Which method enables you to calculate whether daylight saving time is in force at a specific date and time? getTranitions() savingTime() ISODate() getOffset() getTranitions() savingTime() ISODate() getOffset() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The date() function returns ___ representation of the current date and/or time. Float String Integer Boolean Float String Integer Boolean ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp What will be the output of the following PHP code if date is 24/02/2008?$date = new DateTime();echo $date->format('l,F,js,Y') Sunday, 24th February 2008 Sunday, 24 02 2008 Sunday, February 24th 2008 Sunday, 02 24 2008 Sunday, 24th February 2008 Sunday, 24 02 2008 Sunday, February 24th 2008 Sunday, 02 24 2008 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() 2 1 3 4 2 1 3 4 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The getdate() function returns A string A floating-point number An array A Boolean An integer A string A floating-point number An array A Boolean An integer 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”) strtotime(“-45 days”) totime(“+45”) totime(“+45 days”) strtotime(“+45 days”) strtotime(“-45 days”) totime(“+45”) totime(“+45 days”) ANSWER DOWNLOAD EXAMIANS APP