MongoDB\BSON\UTCDateTime
PHP Manual

MongoDB\BSON\UTCDateTime::__construct

(mongodb >=1.0.0)

MongoDB\BSON\UTCDateTime::__constructConstruct a new UTCDateTime

说明

final public MongoDB\BSON\UTCDateTime::__construct ( integer $milliseconds )

参数

milliseconds (integer)

64-bit integer that represents the number of milliseconds since the Unix epoch (Jan 1, 1970). Negative values represent dates before 1970.

On 32-bit systems, this parameter may be provided as a string.

错误/异常

范例

Example #1 MongoDB\BSON\UTCDateTime::__construct() example

<?php

$utcdatetime 
= new MongoDB\BSON\UTCDateTime(1416445411987);
var_dump($utcdatetime);

?>

以上例程的输出类似于:

object(MongoDB\BSON\UTCDateTime)#1 (1) {
  ["milliseconds"]=>
  int(1416445411987)
}

参见


MongoDB\BSON\UTCDateTime
PHP Manual