summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/bug33076.phpt
blob: 95525ff2e80519e9ee07151ac0daa99a42a47ab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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