PHP Date and Timestamp Which of the following is the right way to use the DateTime class? $date = new DateTime(); $date = class DateTime; $date = new class DateTime(); $date = get_Class(DateTime); $date = new DateTime(); $date = class DateTime; $date = new class DateTime(); $date = get_Class(DateTime); 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'); TRUE FALSE Valid Invalid TRUE FALSE Valid Invalid ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The ......... function parses an English textual date or time into a Unix timestamp. strtotime() str_to_time() stroftime() strtodate() strtotime() str_to_time() stroftime() strtodate() ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp The date() function returns ___ representation of the current date and/or time. Integer String Boolean Float Integer String Boolean Float 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") ) 30 22 JUNE 2013 30 22 JUNE 2013 ANSWER DOWNLOAD EXAMIANS APP
PHP Date and Timestamp Which one of the following function is useful for producing a timestamp based on a given date and time. time() mktime() mtime() mrtime() time() mktime() mtime() mrtime() ANSWER DOWNLOAD EXAMIANS APP