From:             [EMAIL PROTECTED]
Operating system: any
PHP version:      4CVS-2003-06-16 (stable)
PHP Bug Type:     Variables related
Bug description:  parse_str() doesn't work anymore

Description:
------------
Related to bug #24007

<?php
parse_str("a=1&b=2&c=3");
var_dump($a, $b, $c);
?>
--EXPECT--
string(1) "1"
string(1) "2"
string(1) "3"

Reproduce code:
---------------
<?php
parse_str("a=1&b=2&c=3");
var_dump($a, $b, $c);
?>


Expected result:
----------------
string(1) "1"
string(1) "2"
string(1) "3"

Actual result:
--------------
NULL
NULL
NULL


-- 
Edit bug report at http://bugs.php.net/?id=24208&edit=1
-- 
Try a CVS snapshot:         http://bugs.php.net/fix.php?id=24208&r=trysnapshot
Fixed in CVS:               http://bugs.php.net/fix.php?id=24208&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=24208&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=24208&r=needtrace
Try newer version:          http://bugs.php.net/fix.php?id=24208&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=24208&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=24208&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=24208&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=24208&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=24208&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=24208&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=24208&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=24208&r=isapi
Install GNU Sed:            http://bugs.php.net/fix.php?id=24208&r=gnused

Reply via email to