--TEST-- PHPC-1839: Referenced, out-of-scope, interned string in typeMap (PHP < 8.1) --SKIPIF-- =', '8.1'); ?> --FILE-- &$rootValue, 'document' => &$documentValue]; return $typemap; } $typemap = createTypemap(); $bson = MongoDB\BSON\fromPhp((object) []); echo "Before:\n"; debug_zval_dump($typemap); MongoDB\BSON\toPHP($bson, $typemap); echo "After:\n"; debug_zval_dump($typemap); ?> ===DONE=== --EXPECT-- Before: array(2) refcount(2){ ["root"]=> string(5) "array" refcount(1) ["document"]=> string(5) "array" refcount(1) } After: array(2) refcount(2){ ["root"]=> string(5) "array" refcount(1) ["document"]=> string(5) "array" refcount(1) } ===DONE===