Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16348 программистов и 1782 робота. Сейчас ищут 1759 программистов ...
MongoDB\BSON\UTCDateTime::toDateTime - Returns the DateTime representation of this UTCDateTime
Вернуться к: MongoDB\BSON\UTCDateTime
MongoDB\BSON\UTCDateTime::toDateTime
(mongodb >=1.0.0)
MongoDB\BSON\UTCDateTime::toDateTime — Returns the DateTime representation of this UTCDateTime
Список параметров
У этой функции нет параметров.
Возвращаемые значения
Returns the DateTime representation of this UTCDateTime.
Ошибки
- Throws MongoDB\Driver\Exception\InvalidArgumentException on argument parsing errors.
Примеры
Пример #1 MongoDB\BSON\UTCDatetime::toDateTime() example
<?php
$utcdatetime = new MongoDB\BSON\UTCDateTime(1416445411987);
$datetime = $utcdatetime->toDateTime();
var_dump($datetime->format(DATE_RSS));
?>
Результатом выполнения данного примера будет что-то подобное:
string(31) "Thu, 20 Nov 2014 01:03:31 +0000"
Смотрите также
Вернуться к: MongoDB\BSON\UTCDateTime