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.

Ошибки

Примеры

Пример #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)
}

Смотрите также

Коментарии

For me to get it work with php 5.6 on an iis 7.5, it had to be a string

$utcdatetime = new MongoDB\BSON\UTCDateTime('1416445411987');
2016-01-15 00:58:02
http://php5.kiev.ua/manual/ru/mongodb-bson-utcdatetime.construct.html
The problem with integer => string is only on 32 bit systems
2016-01-21 12:30:53
http://php5.kiev.ua/manual/ru/mongodb-bson-utcdatetime.construct.html
$utcdatetime = new MongoDB\BSON\UTCDateTime($unixtimestamp * 1000);
2016-06-06 20:00:45
http://php5.kiev.ua/manual/ru/mongodb-bson-utcdatetime.construct.html

    Поддержать сайт на родительском проекте КГБ