Which method is simply an object-oriented version of date()? DateTime::setTime() DateTime::setDate() DateTime::format() DateTime::modify() TRUE ANSWER : ? YOUR ANSWER : ?
The date() function returns ___ representation of the current date and/or time. Float Integer Boolean String TRUE ANSWER : ? YOUR ANSWER : ?
Which function displays the web page’s most recent modification date? last_mod() get_last_mod() getlastmod() lastmod() TRUE ANSWER : ? YOUR ANSWER : ?
.......... Returns the time of sunrise for a given day / location. date-sunrise() date_sunrise() datesunrise() date.sunrise() TRUE ANSWER : ? YOUR ANSWER : ?
Which one of the following format parameter can be used to identify timezone? E T I N TRUE ANSWER : ? YOUR ANSWER : ?
Which method enables you to calculate whether daylight saving time is in force at a specific date and time? getTranitions() getOffset() ISODate() savingTime() TRUE ANSWER : ? YOUR ANSWER : ?
You must make a call to ................... to specify what time zone you want calculations to take place in before calling any date functions. date_default_timezoneset() date_defaulttimezone_set() datedefault_timezone_set() date_default_timezone_set() TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the following PHP code?<br/>If say date is 22/06/2013.<br/>printf( date("t") ) 22 JUNE 2013 30 TRUE ANSWER : ? YOUR ANSWER : ?
What will be the output of the following PHP code?<br/>echo (checkdate(4,31,2010) ? 'Valid' : 'Invalid'); FALSE TRUE Invalid Valid TRUE ANSWER : ? YOUR ANSWER : ?