(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"