Merge branch 'PHP-5.6' into PHP-7.0

This commit is contained in:
Christoph M. Becker 2016-08-13 11:47:20 +02:00
commit a93c62aafa

View file

@ -0,0 +1,12 @@
--TEST--
Bug #72823 (strtr out-of-bound access)
--FILE--
<?php
var_dump(
strtr(11, array('aaa' => 'bbb'))
);
?>
===DONE===
--EXPECT--
string(2) "11"
===DONE===