Statement on glibc/iconv Vulnerability

MongoDB\BSON\UTCDateTime::__toString

(mongodb >=1.0.0)

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

Descrição

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

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Returns the string representation of this UTCDateTime.

Exemplos

Exemplo #1 MongoDB\BSON\UTCDateTime::__toString() example

<?php

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

?>

O exemplo acima produzirá:

string(13) "1416445411987"

Veja Também

add a note

User Contributed Notes

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