|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-11-22 09:01 UTC] sniper@php.net
[2005-11-22 17:57 UTC] sniper@php.net
[2005-11-25 12:15 UTC] ramsey@php.net
[2005-11-28 16:34 UTC] ramsey@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 14:00:01 2025 UTC |
Description: ------------ When the filter extension is enabled, then parse_str() returns an empty array instead of the expected values. Reproduce code: --------------- <?php $args = 'foo=bar&baz=bar'; parse_str($args, $r); var_dump($r); ?> Expected result: ---------------- array(2) { ["foo"]=> string(3) "bar" ["baz"]=> string(3) "bar" } Actual result: -------------- array(0) { }