如何在PHP文档中找到DateTime类的描述?

时间:2008-11-25 06:49:16

标签: php datetime

听起来很简单,但我无法找到文档中存在的内置类和其他内容。我使用函数但想知道OO方面有什么。

7 个答案:

答案 0 :(得分:2)

这不是一个URL或任何东西,但你可以使用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 ] {
    }
  }
}

不完美,因为没有争论,但至少是一个起点。他们应该让这更容易找到,我同意!

答案 1 :(得分:1)

http://no2.php.net/date_create

构造函数信息。关于评论中序列化的一些很好的信息。

http://laughingmeme.org/2007/02/27/ 很好的教程,可能是旧的。

http://ditio.net/2008/06/03/php-datetime-and-datetimezone-tutorial/ 另一个略有不同的方法教程。

答案 2 :(得分:0)

这里有一个PHP 5.2.0中的新类列表:

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

..这里链接到新的DateTime类信息:

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

答案 3 :(得分:0)

您提到的网址http://www.php.net/manual/en/migration52.classes.php根本不描述该类。当然,有一些地方可以记录这个和其他类。

答案 4 :(得分:0)

可以在文档的注释中找到描述:

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

编辑:今天早上我发现了一些令人感冒的事情:

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

答案 5 :(得分:0)

DateTime类文档可以在php.net/DateTime找到,它包含有关类和函数的信息,或者只有类文档可以在php.net/manual/en/class.datetime.php

找到

答案 6 :(得分:0)

这些东西记录在文档中 - 可能不是你要求的时候。

无论如何,作为扩展程序的作者,您可以阅读以获取完整的详细信息:http://derickrethans.nl/phparchitects-guide-to-date-and-time-programming.html

接下来,Derick Rethans正在这里和那里就这个主题和幻灯片进行讨论。如果您有机会参加会议并听取他的一次会谈,那就去做吧。

最近的一个:

FrOsCon,2010年8月22日:xxxx://derickrethans.nl/talks/time-froscon10.pdf(资料来源:xxxx://derickrethans.nl/talks.html)