]> granicus.if.org Git - php/commitdiff
This commit was manufactured by cvs2svn to create branch 'PHP_4_3'.
authorSVN Migration <svn@php.net>
Mon, 16 Jun 2003 19:10:13 +0000 (19:10 +0000)
committerSVN Migration <svn@php.net>
Mon, 16 Jun 2003 19:10:13 +0000 (19:10 +0000)
ext/standard/tests/strings/bug24208.phpt [new file with mode: 0644]

diff --git a/ext/standard/tests/strings/bug24208.phpt b/ext/standard/tests/strings/bug24208.phpt
new file mode 100644 (file)
index 0000000..bed28d9
--- /dev/null
@@ -0,0 +1,12 @@
+--TEST--
+Bug #24208 (parse_str() is not working)
+--FILE--
+<?php
+$a = $b = $c = "oops";
+parse_str("a=1&b=2&c=3");
+var_dump($a, $b, $c);
+?>
+--EXPECT--
+string(1) "1"
+string(1) "2"
+string(1) "3"