method is buggy on windows version of php
instead use
date('Y/m/d', $MongoDate->sec);
or
new DateTime("@" . $MongoDate->sec);
(PECL mongo >= 1.6.0)
MongoDate::toDateTime — Returns a DateTime object representing this date
Extensia care definește această metodă este învechită. În loc, trtebuie utilizată extensia MongoDB. Variante alternative pentru această metodă includ:
Returns the DateTime representation of this date. The returned DateTime will use the UTC time zone.
Această funcție nu are parametri.
This date as a DateTime object.
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() );
?>
Exemplul de mai sus va afișa ceva similar cu:
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" }