Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:17931 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 16130 invoked by uid 1010); 12 Aug 2005 23:34:45 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 16114 invoked from network); 12 Aug 2005 23:34:45 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 12 Aug 2005 23:34:45 -0000 X-Host-Fingerprint: 212.112.227.169 ipx11223.ipxserver.de Linux 2.4/2.6 Received: from ([212.112.227.169:47763] helo=ipx11223.ipxserver.de) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 8A/AE-33075-5123DF24 for ; Fri, 12 Aug 2005 19:34:45 -0400 Received: from localhost (localhost [127.0.0.1]) by ipx11223.ipxserver.de (Postfix) with ESMTP id 0B62DDF0069; Sat, 13 Aug 2005 01:35:00 +0200 (CEST) Received: from ipx11223.ipxserver.de ([127.0.0.1]) by localhost (ipx11223 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 29867-07; Sat, 13 Aug 2005 01:34:57 +0200 (CEST) Received: from [127.0.0.1] (i3ED6B59E.versanet.de [62.214.181.158]) by ipx11223.ipxserver.de (Postfix) with ESMTP id 91F13DF0043; Sat, 13 Aug 2005 01:34:56 +0200 (CEST) Message-ID: <42FD320B.8030105@php.net> Date: Sat, 13 Aug 2005 01:34:35 +0200 User-Agent: Mozilla Thunderbird 1.0.6 (Windows/20050716) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Marcus Boerger Cc: Rasmus Lerdorf , internals References: <42FCE0E4.604@lerdorf.com> <1114795828.20050813012424@marcus-boerger.de> In-Reply-To: <1114795828.20050813012424@marcus-boerger.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by somedaemon at backendmedia.com Subject: Re: [PHP-DEV] PHP 6.0 Wishlist From: lsmith@php.net (Lukas Smith) Marcus Boerger wrote: > 11. class operator cleanup > :: static > -> non static > this would allow to do more things like accessing static members/consts > from anywhere a class is allowed etc. (if proposed that before incl. patch > lookup the archieves). could you elaborate what you mean with this .. currently (some?) "static" calls from within a method will still result in a non static method call ... like parent::fobar() are you talking about cleaning this up? also do you remember my complaints about the fact that static and inheritance dont mix well, since alot of things are done at compile time for performance reasons .. does this also fall into this topic? regards, Lukas