哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

DateTime::__construct

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

DateTime::__construct返回新的 DateTime 对象

说明

public DateTime::__construct(string $datetime = "now", ?DateTimeZone $timezone = null)

DateTimeImmutable::__construct() 一样,但适用于 DateTime。Consider using the DateTimeImmutable and features instead.

返回新的 DateTime 对象。

参数

datetime

日期/时间字符串。正确格式的说明详见 日期与时间格式

如果这个参数为字符串 "now" 表示获取当前时间。 如果同时指定了 $timezone 参数,那么获取指定时区的当前时间。

timezone

DateTimeZone 对象表示 $datetime 的时区。

如果省略了 $timezone 参数或者传递 null, 那么会使用当前时区。

注意:

$datetime 参数是 UNIX 时间戳(例如 @946684800),或者已经包含时区信息(例如 2010-01-28T15:00:00+02:00)的时候,$timezone 参数和当前时区都将被忽略。

返回值

返回一个新的 DateTime 对象实例,或者在发生错误的时候返回 过程化风格在失败时返回 false。。

参见

打开 哈希空间 微信小程序中查看更佳