MongoDB\BSON\Int64::__toString

(mongodb >=1.5.0)

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

說明

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

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

Returns the string representation of this Int64.

范例

示例 #1 MongoDB\BSON\Int64::__toString() example

<?php

$int64 
unserialize('C:18:"MongoDB\BSON\Int64":47:{a:1:{s:7:"integer";s:19:"9223372036854775807";}}');

var_dump((string) $int64);

?>

以上例程的輸出類似于:

string(19) "9223372036854775807"

參見