MongoDB\BSON\UTCDateTime
PHP Manual

MongoDB\BSON\UTCDateTime::toDateTime

(mongodb >=1.0.0)

MongoDB\BSON\UTCDateTime::toDateTimeReturns the DateTime representation of this UTCDateTime

说明

final public DateTime MongoDB\BSON\UTCDateTime::toDateTime ( void )

参数

此函数没有参数。

返回值

Returns the DateTime representation of this UTCDateTime.

错误/异常

范例

Example #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
PHP Manual