Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16348 программистов и 1782 робота. Сейчас ищут 1759 программистов ...
MongoDB\BSON\UTCDateTime::__construct - Construct a new UTCDateTime
Вернуться к: MongoDB\BSON\UTCDateTime
MongoDB\BSON\UTCDateTime::__construct
(mongodb >=1.0.0)
MongoDB\BSON\UTCDateTime::__construct — Construct 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.
Ошибки
- Throws MongoDB\Driver\Exception\InvalidArgumentException on argument parsing errors.
Примеры
Пример #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