Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:17920 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 45416 invoked by uid 1010); 12 Aug 2005 21:03:21 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 45401 invoked from network); 12 Aug 2005 21:03:21 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 12 Aug 2005 21:03:21 -0000 X-Host-Fingerprint: 195.197.172.115 gw01.mail.saunalahti.fi Linux 2.4/2.6 Received: from ([195.197.172.115:48994] helo=gw01.mail.saunalahti.fi) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 24/95-33075-89E0DF24 for ; Fri, 12 Aug 2005 17:03:20 -0400 Received: from nest.netphobia.fi (YZCLXVIII.dsl.saunalahti.fi [85.76.34.69]) by gw01.mail.saunalahti.fi (Postfix) with ESMTP id D55EDF07B1; Sat, 13 Aug 2005 00:03:14 +0300 (EEST) Received: from nest.netphobia.fi (nest.netphobia.fi [127.0.0.1]) by nest.netphobia.fi (8.13.1/8.13.1) with ESMTP id j7CL3HEF016199; Sat, 13 Aug 2005 00:03:17 +0300 Received: from localhost (jani@localhost) by nest.netphobia.fi (8.13.1/8.13.1/Submit) with ESMTP id j7CL3Hga016196; Sat, 13 Aug 2005 00:03:17 +0300 X-Authentication-Warning: nest.netphobia.fi: jani owned process doing -bs Date: Sat, 13 Aug 2005 00:03:17 +0300 (EEST) Reply-To: Jani Taskinen To: Rasmus Lerdorf cc: internals In-Reply-To: <42FCE0E4.604@lerdorf.com> Message-ID: References: <42FCE0E4.604@lerdorf.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Re: [PHP-DEV] PHP 6.0 Wishlist From: sniper@iki.fi (Jani Taskinen) On Fri, 12 Aug 2005, Rasmus Lerdorf wrote: > 1. Remove register_globals completely +1 (then we can cleanup the mess in ext/session too :) > 2. Remove magic_quotes_* +1 (definately, finally, at last! The filter stuff obsoletes those anyway?) > 3. Add input filter extension which will include a mechanism for > application developers to very easily turn it off which would swap > the raw GPC arrays back in case the site had it turned on by default. +1 (to be able to do 2. for real, of course) > 4. Include an opcode cache by default. A lot of work has gone into > pecl/apc recently, but I am not hung up on which one goes in. +100 (it's ridiculous to have to install it separately) > 5. Remove safe_mode and focus on open_basedir +1 > 6. Remove some stuff that has been marked deprecated since PHP 3/4 Something like 'allow_call_time_pass_reference' or whatever it was again? > A couple of others that we could consider, but I don't actually think > wins us much apart from academic purity (which I have never been all > that keen on) are: > > 7. Make identifiers case-sensitive Such as function names? :) That'd be kinda nice since it not only makes the language more consistent but also tad faster, especially now with the unicode stuff slowing that down even more.. > 8. Remove various function aliases I was toying with an idea about a configure switch and/or ini option. But I guess some of those just should go away. The other wild idea I got while thinking about this was to add opposite option for 'disable_functions', 'enable_functions', which would only enable the functions I _really_ use :) --Jani