]> granicus.if.org Git - php/commitdiff
add test for #24281
authorStanislav Malyshev <stas@php.net>
Mon, 23 Jun 2003 14:18:33 +0000 (14:18 +0000)
committerStanislav Malyshev <stas@php.net>
Mon, 23 Jun 2003 14:18:33 +0000 (14:18 +0000)
ext/standard/tests/strings/bug24281.phpt [new file with mode: 0644]

diff --git a/ext/standard/tests/strings/bug24281.phpt b/ext/standard/tests/strings/bug24281.phpt
new file mode 100644 (file)
index 0000000..b45ae9a
--- /dev/null
@@ -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.