PHP Date and Timestamp Which of the following is the right way to use the DateTime class? $date = class DateTime; $date = get_Class(DateTime); $date = new class DateTime(); $date = new DateTime(); $date = class DateTime; $date = get_Class(DateTime); $date = new class DateTime(); $date = new DateTime(); ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp How many methods does the DateTime class have? 8 11 9 10 8 11 9 10 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 JUNE 30 2013 22 JUNE 30 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() ISODate() savingTime() getOffset() getTranitions() ISODate() savingTime() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp How many constants does the DateTime class have? 10 9 11 8 10 9 11 8 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp What will be the output of the following code?If say date is 22/06/2013.echo "Today is ".date("F d, Y") Today is June 22, 2013 Today is 06-22-2013 Today is 22-06-2013 Today is 22 June, 2013 Today is June 22, 2013 Today is 06-22-2013 Today is 22-06-2013 Today is 22 June, 2013 ANSWER DOWNLOAD EXAMIANS APP