📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-07-12 07:15:31
📂
/ (Root)
/
opt
/
alt
/
tests
/
alt-php80-pecl-mongodb_1.18.1-1.el8
/
tests
📍 /opt/alt/tests/alt-php80-pecl-mongodb_1.18.1-1.el8/tests
🔄 Refresh
✏️
Editing: bson-int64-jsonserialize-002.phpt
Read Only
--TEST-- MongoDB\BSON\Int64::jsonSerialize() with json_encode() --FILE-- <?php require_once __DIR__ . '/../utils/basic.inc'; $tests = [ ['max' => new MongoDB\BSON\Int64('9223372036854775807')], ['min' => new MongoDB\BSON\Int64('-9223372036854775808')], ['zero' => new MongoDB\BSON\Int64(0)], ]; foreach ($tests as $test) { var_dump(json_encode($test)); } ?> ===DONE=== <?php exit(0); ?> --EXPECT-- string(45) "{"max":{"$numberLong":"9223372036854775807"}}" string(46) "{"min":{"$numberLong":"-9223372036854775808"}}" string(28) "{"zero":{"$numberLong":"0"}}" ===DONE===
💾 Save Changes
❌ Cancel