--TEST-- get_object_vars() fast/slow-path discrepancies --SKIPIF-- --FILE-- 42, "\0*\0c" => 24, 12 => 6, ]; $obj->test = new class implements JsonSerializable { public function jsonSerialize() { var_dump(get_object_vars($GLOBALS['obj'])); } }; var_dump(get_object_vars($obj)); // Use json_encode to get a dump with apply_count > 0 json_encode($obj); ?> --EXPECT-- array(4) { ["Ab"]=> int(42) ["*c"]=> int(24) [12]=> int(6) ["test"]=> object(JsonSerializable@anonymous)#2 (0) { } } array(4) { ["Ab"]=> int(42) ["*c"]=> int(24) [12]=> int(6) ["test"]=> object(JsonSerializable@anonymous)#2 (0) { } }