php-src/ext/standard/tests/strings/bug33076.phpt
2018-10-14 19:45:12 +02:00

15 lines
231 B
PHP

--TEST--
Bug #33076 (str_ireplace() incorrectly counts result string length and may cause segfault)
--FILE--
<?php
$value = str_ireplace("t", "bz", "Text");
var_dump($value);
echo "Done\n";
?>
--EXPECT--
string(6) "bzexbz"
Done