Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:29077 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 85696 invoked by uid 1010); 27 Apr 2007 15:46:18 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 85681 invoked from network); 27 Apr 2007 15:46:18 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 27 Apr 2007 15:46:18 -0000 Authentication-Results: pb1.pair.com smtp.mail=jochem@iamjochem.com; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=jochem@iamjochem.com; sender-id=unknown Received-SPF: error (pb1.pair.com: domain iamjochem.com from 194.109.193.121 cause and error) X-PHP-List-Original-Sender: jochem@iamjochem.com X-Host-Fingerprint: 194.109.193.121 mx1.moulin.nl Linux 2.6 Received: from [194.109.193.121] ([194.109.193.121:58570] helo=mx1.moulin.nl) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E6/85-29041-8CA12364 for ; Fri, 27 Apr 2007 11:46:18 -0400 Received: from localhost (localhost [127.0.0.1]) by mx1.moulin.nl (Postfix) with ESMTP id E23A824D8BB; Fri, 27 Apr 2007 17:46:20 +0200 (CEST) X-Virus-Scanned: amavisd-new at moulin.nl Received: from mx1.moulin.nl ([127.0.0.1]) by localhost (mx1.moulin.nl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id bUh2MuK-dCIf; Fri, 27 Apr 2007 17:46:12 +0200 (CEST) Received: from [192.168.1.22] (bspr.xs4all.nl [194.109.161.228]) by mx1.moulin.nl (Postfix) with ESMTP id 54568247F11; Fri, 27 Apr 2007 17:46:12 +0200 (CEST) Message-ID: <46321ABD.3080601@iamjochem.com> Date: Fri, 27 Apr 2007 17:46:05 +0200 User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: Michael Wallner CC: internals@lists.php.net References: <4631EE17.20400@gmx.net> <4631EFA1.4040507@zend.com> <4631F2BC.9070405@iamjochem.com> <4631FF9E.9010905@iamjochem.com> <9F.0B.29041.F0102364@pb1.pair.com> In-Reply-To: <9F.0B.29041.F0102364@pb1.pair.com> X-Enigmail-Version: 0.94.2.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] http arrays From: jochem@iamjochem.com (Jochem Maas) sorry for the noise - having gone back and tested again I can no longer reproduce my original problem (the OP seemingly had the same issue). whatever problem I was having, related to encoding of square brackets, seems to have disappeared. sometimes I feel like I'm living in the twilight zone :-P today there is no spoon. Michael Wallner wrote: > 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 >