Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16439 программистов и 1786 роботов. Сейчас ищут 1995 программистов ...
MongoDB\BSON\UTCDateTime::__toString - Returns the string representation of this UTCDateTime
Вернуться к: MongoDB\BSON\UTCDateTime
MongoDB\BSON\UTCDateTime::__toString
(mongodb >=1.0.0)
MongoDB\BSON\UTCDateTime::__toString — Returns the string representation of this UTCDateTime
Описание
final public string MongoDB\BSON\UTCDateTime::__toString
( void
)
Список параметров
У этой функции нет параметров.
Возвращаемые значения
Returns the string representation of this UTCDateTime.
Ошибки
- Throws MongoDB\Driver\Exception\InvalidArgumentException on argument parsing errors.
Примеры
Пример #1 MongoDB\BSON\UTCDateTime::__toString() example
<?php
$utcdatetime = new MongoDB\BSON\UTCDateTime(1416445411987);
var_dump((string) $utcdatetime);
?>
Результат выполнения данного примера:
string(13) "1416445411987"
Смотрите также
Вернуться к: MongoDB\BSON\UTCDateTime