1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00

add test for #24281

This commit is contained in:
Stanislav Malyshev
2003-06-23 14:18:33 +00:00
parent baa3892fe1
commit 02bebe8186

View File

@@ -0,0 +1,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.