(PECL mongo >= 1.6.0; PHP > 5.3.4)
MongoDate::toDateTime — Returns a DateTime object representing this date
Расширение, задающее этот метод, объявлено устаревшим. Вместо него используйте расширение MongoDB. Есть такие альтернативы:
Returns a DateTime object representation of this date.
У этой функции нет параметров.
This date as a DateTime object.
Пример #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" }