1. Question: Which options are true?

    A
    %a refers Abbreviated weekly name

    B
    %A refers Complete weekday name

    C
    %b refers Abbreviated month name

    D
    %B refers Complete month name

    Note: Not available
    1. Report
  2. Question: What about ten weeks and two days from today (May 24, 2010)?   $futuredate = strtotime("10 weeks 2 days"); echo date("F d, Y", $futuredate); This returns the following:

    A
    July 04, 2010

    B
    August 04, 2010

    C
    August 14, 2010

    D
    August 4, 2010

    Note: Not available
    1. Report
  3. Question: $date = new DateTime(); $date->setDate(2010,5,25); echo $date->format("F j, Y"); This returns the following:

    A
    2010, May 25

    B
    May 25, 2010

    C
    25 May, 2010

    D
    25/05/10

    Note: Not available
    1. Report
  4. Question: Which of the following PHP method is used to format the date and time for output?

    A
    date()

    B
    format()

    C
    date_format()

    D
    format_date()

    Note: Not available
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd