php8.5
Home/ Manual/ bson / utcdatetime/ MongoDB\BSON\UTCDateTime::__toString

MongoDB\BSON\UTCDateTime::__toString

PHP function Edit on GitHub ✎

(mongodb >=1.0.0)

Returns the string representation of this UTCDateTime

Description

MongoDB\BSON\UTCDateTime::__toString(): string

Parameters Parameters

Return Values

Returns the string representation of this UTCDateTime.

Examples

MongoDB\BSON\UTCDateTime::__toString() example

php
<?php

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

?>

The above example will output:

output
string(13) "1416445411987"

See Also

  • BSON Types: Date

Source: reference/mongodb/bson/utcdatetime/tostring.xml · from the official PHP manual (php/doc-en)