Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:38057 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 39117 invoked from network); 1 Jun 2008 16:43:38 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 1 Jun 2008 16:43:38 -0000 Authentication-Results: pb1.pair.com header.from=hannes.magnusson@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=hannes.magnusson@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 66.249.92.169 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: hannes.magnusson@gmail.com X-Host-Fingerprint: 66.249.92.169 ug-out-1314.google.com Received: from [66.249.92.169] ([66.249.92.169:10749] helo=ug-out-1314.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 66/A0-35077-9B1D2484 for ; Sun, 01 Jun 2008 12:43:38 -0400 Received: by ug-out-1314.google.com with SMTP id h3so170411ugf.29 for ; Sun, 01 Jun 2008 09:43:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=nK55VS8KycwP4vtq95FexNxZxIfBzUlVMyVbvBzV5eo=; b=fD85IL6YmrgMAMBtCHvCVl2yetdiJ9oIawS48tnzj7ckz5SOUuQWAajmK+7ESP4r1U iGcJc6QjSnqeCazqBT/IWV/X33gjZ6cWDBKcuUoEGjvodZFns3njUYedZCf9gMV6H/B/ Xoxp5OZEozbVHP9JLomSQgKGCGj3mOD32hM70= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=kBCYdiSukBACQ/QS/G8yuHbsC0HYCS22iosblKK5sHU3VVZ8MiQUteHECYkZZ9PhLD IHuSp/WQoKh9ReNsa9yxPzXlooc/SCWhKiicmPQ9YAidmI7lZYEFgQDz/XiGLh650N1y cxG/UjSSxxvLkRMlqGittIxuMTUjYcKSQOjbY= Received: by 10.67.116.15 with SMTP id t15mr1542130ugm.21.1212338614397; Sun, 01 Jun 2008 09:43:34 -0700 (PDT) Received: by 10.67.25.8 with HTTP; Sun, 1 Jun 2008 09:43:34 -0700 (PDT) Message-ID: <7f3ed2c30806010943k79790024hf0e83bf5ea5a5340@mail.gmail.com> Date: Sun, 1 Jun 2008 18:43:34 +0200 To: "Stanislav Malyshev" Cc: "PHP Internals" In-Reply-To: <4842C9AF.6040803@zend.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4842C9AF.6040803@zend.com> Subject: Re: [PHP-DEV] multiple use From: hannes.magnusson@gmail.com ("Hannes Magnusson") On Sun, Jun 1, 2008 at 6:09 PM, Stanislav Malyshev wrote: > Hi! > > Attached is the patch that implements multiple elements in use statement, > like this: > > use foo::bar as baz, foo::baz as bazbaz; > > Any objections to it? Yes. I find the whole namespace issue complicated enough as it is. "importing" multiple namespaces and "aliasing" various classess/functions all in one line decreases the readability imo. -Hanens