Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:20991 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 24489 invoked by uid 1010); 2 Dec 2005 08:27:19 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 24474 invoked from network); 2 Dec 2005 08:27:19 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 2 Dec 2005 08:27:19 -0000 X-Host-Fingerprint: 194.109.253.196 mediawave.xs4all.nl Received: from ([194.109.253.196:17325] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id AD/97-14828-76500934 for ; Fri, 02 Dec 2005 03:27:19 -0500 Message-ID: To: internals@lists.php.net Date: Fri, 02 Dec 2005 09:28:08 +0100 User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 References: <20.BA.56276.A1BC8834@pb1.pair.com> <7A.02.14828.9B9AF834@pb1.pair.com> <98.42.14828.81BAF834@pb1.pair.com> <438FD635.1080308@gmail.com> <14.27.14828.90EFF834@pb1.pair.com> In-Reply-To: <14.27.14828.90EFF834@pb1.pair.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Posted-By: 194.109.253.196 Subject: Re: namespace separator ideas From: bart@mediawave.nl (Bart de Boer) Bart de Boer wrote: > What was the argument against '::' again? > > Jessie Hernandez wrote: Found it... BTW, "::" is out the question (yes, I did try it). It created ambiguity in the case of calling a function in a namespace and calling a method of a class in a namespace: echo a::b::c(); The above can either mean "call function c in namespace b under namespace a" or "call static method c of class b under namespace a". Since this cannot be determined, "::" cannot be used.