php-src/ext/standard/tests/strings/bug24281.phpt

19 lines
515 B
Plaintext
Raw Normal View History

2003-06-23 14:18:33 +00:00
--TEST--
2003-07-01 03:11:09 +00:00
Bug #24281 (str_replace count not returned if variable wasn't initialized)
2003-06-23 14:18:33 +00:00
--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.