Php/docs/mongodate.todatetime
来自菜鸟教程
MongoDate::toDateTime
(PECL mongo >= 1.6.0)
MongoDate::toDateTime — Returns a DateTime object representing this date
This extension that defines this method
is deprecated. Instead, the MongoDB extension should be used. Alternatives to this method include:
说明
public MongoDate::toDateTime ( ) : DateTime
Returns the DateTime representation of this date. The returned DateTime will use the UTC time zone.
参数
此函数没有参数。
范例
Example #1 MongoDate::toDateTime() example
This example demonstrates creating a DateTime object from a MongoDate object.
<?php$d = new MongoDate(strtotime("2014-11-18 11:01:25"));var_dump( $d->toDateTime() );?>
以上例程的输出类似于:
class DateTime#2 (3) { public $date => string(26) "2014-11-18 11:01:25.000000" public $timezone_type => int(1) public $timezone => string(6) "+00:00" }