(mongodb >=1.5.0)
MongoDB\BSON\Int64::__toString — 返回此 Int64 的字符串表示形式
此函数没有参数。
返回此 Int64 的字符串表示形式。
示例 #1 MongoDB\BSON\Int64::__toString() 示例
<?php
$int64 = new MongoDB\BSON\Int64('9223372036854775807');
var_dump((string) $int64);
?>
上面的示例将输出类似于以下内容
string(19) "9223372036854775807"