Dutch PHP Conference 2025 - Call For Papers

MongoDB\BSON\UTCDateTime::__toString

(mongodb >=1.0.0)

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

Опис

final public 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"

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

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top