--TEST-- BSON\fromPHP(): PHP document with public property whose name is an empty string --FILE-- 1], (object) ['' => 1], ]; foreach ($tests as $document) { $s = fromPHP($document); echo "Test ", toJSON($s), "\n"; hex_dump($s); } ?> ===DONE=== --EXPECT-- Test { "" : 1 } 0 : 0b 00 00 00 10 00 01 00 00 00 00 [...........] Test { "" : 1 } 0 : 0b 00 00 00 10 00 01 00 00 00 00 [...........] ===DONE===