Added test case for bug #24208

This commit is contained in:
Moriyoshi Koizumi 2003-06-16 19:10:12 +00:00
parent 2f4e91bf8a
commit a3873c986b

View File

@ -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"