1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 01:02:25 +01:00
Files
archived-php-src/ext/mbstring/tests/mb_convert_encoding_leak.phpt
2019-09-04 08:51:03 +02:00

19 lines
275 B
PHP

--TEST--
mb_convert_encoding() shouldn't leak keys
--SKIPIF--
<?php require 'skipif.inc'; ?>
--FILE--
<?php
$x = "x";
$array = ["foo" . $x => "bar"];
mb_convert_encoding($array, 'UTF-8', 'UTF-8');
var_dump($array);
?>
--EXPECT--
array(1) {
["foox"]=>
string(3) "bar"
}