vote up 1 vote down star

Sounds easy, but I can't find where this built in class and others exists in the documentation. I use functions but want to know what there is on the OO side.

flag

6 Answers

vote up 2 vote down

It's not a URL or anything, but you can get a fair idea using Reflection:

Reflection::export(new ReflectionClass('DateTime'));

Class [  class DateTime ] {

  - Constants [11] {
    Constant [ string ATOM ] { Y-m-d\TH:i:sP }
    Constant [ string COOKIE ] { l, d-M-y H:i:s T }
    Constant [ string ISO8601 ] { Y-m-d\TH:i:sO }
    Constant [ string RFC822 ] { D, d M y H:i:s O }
    Constant [ string RFC850 ] { l, d-M-y H:i:s T }
    Constant [ string RFC1036 ] { D, d M y H:i:s O }
    Constant [ string RFC1123 ] { D, d M Y H:i:s O }
    Constant [ string RFC2822 ] { D, d M Y H:i:s O }
    Constant [ string RFC3339 ] { Y-m-d\TH:i:sP }
    Constant [ string RSS ] { D, d M Y H:i:s O }
    Constant [ string W3C ] { Y-m-d\TH:i:sP }
  }

  - Static properties [0] {
  }

  - Static methods [0] {
  }

  - Properties [0] {
  }

  - Methods [9] {
    Method [  public method __construct ] {
    }

    Method [  public method format ] {
    }

    Method [  public method modify ] {
    }

    Method [  public method getTimezone ] {
    }

    Method [  public method setTimezone ] {
    }

    Method [  public method getOffset ] {
    }

    Method [  public method setTime ] {
    }

    Method [  public method setDate ] {
    }

    Method [  public method setISODate ] {
    }
  }
}

Not perfect, as there are no arguments, but a starting point at least. They should make this easier to find out, I agree!

link|flag
It was then constructor I was particular interested in, which reflection doesn't give. I'm new to the reflection class, and may use it some time (I wonder if its easy to find in the PHP documentation?) – gregambrose Nov 25 '08 at 7:17
:) au.php.net/oop5.reflection If it's particularly the constructor, this may help: <?php date_default_timezone_set('Europe/London'); $datetime = new DateTime('2008-08-03 14:52:10'); echo $datetime->format(DATE_ATOM); ?> (From the date_create() manual page). – majelbstoat Nov 25 '08 at 8:16
vote up 0 vote down

The URL you mentioned http://www.php.net/manual/en/migration52.classes.php doens't describe the class at all. Surely there is somewhere where this and other classes are documented.

link|flag
vote up 0 vote down

There is a list of new classes in PHP 5.2.0 here:

http://www.php.net/manual/en/migration52.classes.php

..which links to the new DateTime class info here:

http://www.php.net/manual/en/ref.datetime.php

link|flag
vote up 0 vote down

A description can be found in the comments of the documentation :

http://php.net/manual/fr/book.datetime.php#84699

EDIT : This morning I found something interresting :

http://laughingmeme.org/2007/02/27/looking-at-php5s-datetime-and-datetimezone/

link|flag
But shouldn't these classes be documented somewhere? I can't depend on contributed notes, and in any case they don't provide complete documentation. – gregambrose Nov 26 '08 at 3:42
Indeed. A lot of things are undocumented in PHP 5, that's the trouble. PHP has built its rep partly because of its great documentation that compensated the "messeiness" of the language. Now the language becomes tidy, and the doc uncomplete. Is there a law behind this ? I add a link to my answser... – e-satis Nov 26 '08 at 8:01
vote up 0 vote down

The DateTime class documentation can be found at php.net/DateTime , this has information on both the class and functions, or just the class documentation is available at php.net/manual/en/class.datetime.php

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.