Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:46854 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 76866 invoked from network); 21 Jan 2010 16:27:20 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 21 Jan 2010 16:27:20 -0000 Authentication-Results: pb1.pair.com header.from=dave@dmi.me.uk; sender-id=pass; domainkeys=good Authentication-Results: pb1.pair.com smtp.mail=dave@dmi.me.uk; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain dmi.me.uk designates 77.68.52.130 as permitted sender) DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: dave@dmi.me.uk X-Host-Fingerprint: 77.68.52.130 server77-68-52-130.live-servers.net Received: from [77.68.52.130] ([77.68.52.130:48849] helo=scaramanga.siterage.net) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 33/24-26239-260885B4 for ; Thu, 21 Jan 2010 11:27:17 -0500 Received: from localhost (scaramanga.siterage.net [127.0.0.1]) by scanner.scaramanga.siterage.net (SiteRage Mail Server) with ESMTP id 2BDB06063A; Thu, 21 Jan 2010 16:27:10 +0000 (GMT) X-Spam-Flag: NO X-Spam-Score: -3.859 X-Spam-Level: X-Spam-Status: No, score=-3.859 required=5 tests=[ALL_TRUSTED=-1.8, AWL=0.540, BAYES_00=-2.599] autolearn=ham Received: from scaramanga.siterage.net ([127.0.0.1]) by localhost (scaramanga.siterage.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id bgS0Qt-Euurw; Thu, 21 Jan 2010 16:27:09 +0000 (GMT) Received: from [192.168.201.2] (ip9.net195-72-173.ci-net.com [195.72.173.9]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by scaramanga.siterage.net (SiteRage Mail Server) with ESMTPSA id 20FCC35766; Thu, 21 Jan 2010 16:27:09 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=dmi.me.uk; s=scara-dkim; t=1264091229; bh=CSmG4YFoCUuLPquoYx2INdHze02oYT8C9JHf6y60WNI=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=MdGVObJ6nJk4mWggppwnCKMAyInnOkvyqqQH1bk9vXf+BOkgMOGL6GkGIxAqIDXYg JeMqliZrbv3QAsKdF0m9dsqc+OcY1Q1LjFSjk+xctzeLS3YlKzNdb5OLj7fFcU6KTV /neG2yw3PbLaBQRyj1BjGViDDhJEe6DdugIOZlpw= DomainKey-Signature: a=rsa-sha1; s=scara-dk; d=dmi.me.uk; c=simple; q=dns; h=message-id:date:from:user-agent:mime-version:to:cc:subject: references:in-reply-to:x-enigmail-version:content-type:content-transfer-encoding; b=Z0zroeFgLNeJJjCEZwzarFC0pFkEt7/Pm6s6JcgLlWmZBUwbPtWBfbGfHEer6gse3 NyTOrIsynR+tXiSy9vSKBhe/Ur4peZMeFizdeY85MVUaO50DFFLVGUlDwInAgKcUkhP 5ikhYzCXBMucUmBkipsFvP/cloc6YJ66HLnr7JQ= Message-ID: <4B58805C.8060004@dmi.me.uk> Date: Thu, 21 Jan 2010 16:27:08 +0000 User-Agent: Thunderbird 2.0.0.23 (X11/20090812) MIME-Version: 1.0 To: Richard Lynch CC: Nathan Rixham , internals@lists.php.net References: <3392.98.193.1264087265.squirrel@www.l-i-e.com> In-Reply-To: <3392.98.193.1264087265.squirrel@www.l-i-e.com> X-Enigmail-Version: 0.96.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] Dots and spaces in variable names are converted to underscores. From: dave@dmi.me.uk (Dave Ingram) Richard Lynch wrote: > For BC, I suppose PHP could have *both* 'a.b' and 'a_b' +1 as a PHP user. For BC, I guess this should go without changing the current precedence rules too, annoying though it might be. At the moment: "?a_b=foo&a.b=bar" gives $_GET === array('a_b' => 'bar') As I understand it with this proposal: "?a_b=foo&a.b=bar" would give $_GET === array('a_b' => 'bar', 'a.b' => 'bar') It would be nicer for it not to lose the original assignment (a_b => foo) though, perhaps via an INI setting. Dave