MongoDB\BSON\UTCDateTime::__toString
PHP Manual
PHP Manual»MongoDB\BSON\UTCDateTime»MongoDB\BSON\UTCDateTime::__toString

MongoDB\BSON\UTCDateTime::__toString

(mongodb >=1.0.0)

MongoDB\BSON\UTCDateTime::__toStringReturns the string representation of this UTCDateTime

Опис

final public function MongoDB\BSON\UTCDateTime::__toString(): string

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Returns the string representation of this UTCDateTime.

Приклади

Приклад #1 MongoDB\BSON\UTCDateTime::__toString() example

<?php

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

?>

Поданий вище приклад виведе:

string(13) "1416445411987"

Прогляньте також

To Top