Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:33714 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 73136 invoked by uid 1010); 5 Dec 2007 05:06:56 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 73121 invoked from network); 5 Dec 2007 05:06:56 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 5 Dec 2007 05:06:56 -0000 Authentication-Results: pb1.pair.com smtp.mail=sam@sambarrow.com; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=sam@sambarrow.com; sender-id=unknown Received-SPF: error (pb1.pair.com: domain sambarrow.com from 205.234.132.11 cause and error) X-PHP-List-Original-Sender: sam@sambarrow.com X-Host-Fingerprint: 205.234.132.11 scottsdale.servershost.net Received: from [205.234.132.11] ([205.234.132.11:33921] helo=scottsdale.servershost.net) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 22/A0-02044-DE136574 for ; Wed, 05 Dec 2007 00:06:53 -0500 Received: from [216.15.51.211] (port=50660 helo=[192.168.1.96]) by scottsdale.servershost.net with esmtpsa (SSLv3:RC4-MD5:128) (Exim 4.68) (envelope-from ) id 1IzmTG-00043F-Kk for internals@lists.php.net; Tue, 04 Dec 2007 23:06:54 -0600 To: internals@lists.php.net In-Reply-To: <200712042226.08192.larry@garfieldtech.com> References: <200712042226.08192.larry@garfieldtech.com> Content-Type: text/plain Date: Wed, 05 Dec 2007 00:06:49 -0500 Message-ID: <1196831209.9071.3.camel@sams-room> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 Content-Transfer-Encoding: 7bit X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - scottsdale.servershost.net X-AntiAbuse: Original Domain - lists.php.net X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - sambarrow.com X-Source: X-Source-Args: X-Source-Dir: Subject: Namespaces From: sam@sambarrow.com (Sam Barrow) I think support for multiple namespaces in one file should definitely be used. As far as using curly braces vs using the namespace declaration, it doesn't really matter to me, however it is important that i be able to use the same namespace twice: namespace a { function function1() { return true ; } } // some other code namespace a { function function2() { return false ; } }