ID:               24208
 Updated by:       [EMAIL PROTECTED]
 Reported By:      [EMAIL PROTECTED]
-Status:           Assigned
+Status:           Closed
 Bug Type:         Variables related
 Operating System: any
 PHP Version:      4CVS-2003-06-16 (stable)
 Assigned To:      iliaa
 New Comment:

This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.




Previous Comments:
------------------------------------------------------------------------

[2003-06-16 14:07:11] [EMAIL PROTECTED]

Assigned to ilia :)


------------------------------------------------------------------------

[2003-06-16 14:06:29] [EMAIL PROTECTED]

This problem seems to occur only with the cli version.

------------------------------------------------------------------------

[2003-06-16 14:01:25] [EMAIL PROTECTED]

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 this bug report at http://bugs.php.net/?id=24208&edit=1

Reply via email to