summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/bug24281.phpt
blob: 3c041d67cba5bd88d1742026e4e67bf2d47b5e23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--TEST--
Bug #24281 (str_replace count not returned if variable wasn't initialized)
--SKIPIF--
<?php 
        if (version_compare(zend_version(), '2.0.0-dev', '<')) die('SKIP PHP5 functionality'); 
?>
--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.