Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:29075 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 95861 invoked by uid 1010); 27 Apr 2007 13:56:32 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 95846 invoked from network); 27 Apr 2007 13:56:32 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 27 Apr 2007 13:56:32 -0000 X-Host-Fingerprint: 80.123.98.46 unknown Received: from [80.123.98.46] ([80.123.98.46:28741] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 9F/0B-29041-F0102364 for ; Fri, 27 Apr 2007 09:56:32 -0400 Message-ID: <9F.0B.29041.F0102364@pb1.pair.com> To: internals@lists.php.net Date: Fri, 27 Apr 2007 15:56:51 +0200 User-Agent: Thunderbird 1.5.0.10 (X11/20070403) MIME-Version: 1.0 References: <4631EE17.20400@gmx.net> <4631EFA1.4040507@zend.com> <4631F2BC.9070405@iamjochem.com> <4631FF9E.9010905@iamjochem.com> In-Reply-To: <4631FF9E.9010905@iamjochem.com> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Posted-By: 80.123.98.46 Subject: Re: [PHP-DEV] http arrays From: mike@php.net (Michael Wallner) Jochem Maas wrote: > I'll take your word on it (although I can't be sure exactly what it is that you expected), > which means the change has been reverted, or the input parsing stuff has been changed to > recognize escaped square brackets as if they were not escaped - I know for sure > that http_build_query() did escape quare brackets in 5.1.6 and that url query strings > that included escaped square brackets were not parsed into [nested] arrays. "expected" means that I get array(1) { ["a"]=> array(1) { [0]=> string(1) "1" } } for get.php?a%5B%5D=1 -- Michael