summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/bug24281.phpt
blob: 66a30913e89cca5a56634bafe88a96bc88b5405a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #24281 (str_replace count not returned if variable wasn't initialized)
--FILE--
<?php
$string = "He had had to have had it";
$newstring = str_replace("had", "foo", $string, $count);
print "$count changes were made.\n";
$count = "foo";
$newstring = str_replace("had", "foo", $string, $count);
print "$count changes were made.\n";
?>
--EXPECT--
3 changes were made.
3 changes were made.