Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:17952 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 22269 invoked by uid 1010); 13 Aug 2005 11:51:15 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 22254 invoked from network); 13 Aug 2005 11:51:15 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 13 Aug 2005 11:51:15 -0000 X-Host-Fingerprint: 195.226.6.9 darkcity.gna.ch Linux 2.4/2.6 Received: from ([195.226.6.9:36825] helo=darkcity.gna.ch) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id BE/A1-33075-3BEDDF24 for ; Sat, 13 Aug 2005 07:51:15 -0400 Received: from localhost (localhost [127.0.0.1]) by darkcity.gna.ch (Postfix) with ESMTP id 2B5801CF79E; Sat, 13 Aug 2005 13:51:11 +0200 (CEST) Received: from unknown by localhost (amavisd-new, unix socket) id client-XXulnF10; Sat, 13 Aug 2005 13:51:09 +0200 (CEST) Received: by darkcity.gna.ch (Postfix, from userid 65534) id A66931D1501; Sat, 13 Aug 2005 13:51:09 +0200 (CEST) Received: from [192.168.1.43] (80-219-12-45.dclient.hispeed.ch [80.219.12.45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by darkcity.gna.ch (Postfix) with ESMTP id DEDA91CF79E; Sat, 13 Aug 2005 13:51:07 +0200 (CEST) Message-ID: <42FDDF11.2050308@cschneid.com> Date: Sat, 13 Aug 2005 13:52:49 +0200 User-Agent: Mozilla Thunderbird 1.0 (X11/20041207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Rasmus Lerdorf Cc: internals References: <42FCE0E4.604@lerdorf.com> In-Reply-To: <42FCE0E4.604@lerdorf.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on darkcity.gna.ch X-Spam-Level: * X-Spam-Status: No, score=1.7 required=5.0 tests=AWL,RCVD_IN_NJABL_DUL, RCVD_IN_SORBS_DUL autolearn=disabled version=3.0.4 X-Virus-Scanned: by amavisd-new at gna.ch Subject: Re: PHP 6.0 Wishlist From: cschneid@cschneid.com (Christian Schneider) Rasmus Lerdorf wrote: > 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. Big +1 9. Named parameters. Preferred way would be via array()-less array collation as we are already using this in our production system ;-) : foo('id' => 42, 'name' => "foo"); 10. Allow dangling commas in function calls, handy with varargs and 9: foo(1, 2, 3,); Minor: 11. HTTP response splitting attack protection: Replace \r and \n with space in header(); Information and patches implementing this can be found at http://cschneid.com/php/ - Chris