Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:125197 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 59316 invoked from network); 18 Mar 2003 22:11:59 -0000 Received: from unknown (HELO mailout05.sul.t-online.com) (194.25.134.82) by pb1.pair.com with SMTP; 18 Mar 2003 22:11:59 -0000 Received: from fwd01.sul.t-online.de by mailout05.sul.t-online.com with smtp id 18vPJH-0006OV-00; Tue, 18 Mar 2003 23:11:51 +0100 Received: from baumbart.post.rwth-aachen.de (520072483730-0001@[80.142.175.230]) by fwd01.sul.t-online.com with esmtp id 18vPJ5-1N3szgC; Tue, 18 Mar 2003 23:11:39 +0100 Reply-to:marcus.boerger@post.rwth-aachen.de Message-ID: <5.1.0.14.2.20030318231017.025e4ac8@pop.t-online.de> X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Tue, 18 Mar 2003 23:11:37 +0100 To: Derick Rethans Cc: Andrei Zmievski , PHP Internals In-Reply-To: References: <20030318215420.GA8409@hyperion.gravitonic.com> <20030318215420.GA8409@hyperion.gravitonic.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Sender: 520072483730-0001@t-dialin.net Subject: Re: [PHP-DEV] function registration patch From: rob@bottled.codes ("Rob Landers") At 22:57 18.03.2003, Derick Rethans wrote: >On Tue, 18 Mar 2003, Andrei Zmievski wrote: > > > Currently when registering functions, the unmodified function name is > > used as the key for the function table. This leads to problems when an > > extension class has a constructor that is not all lowercased. For > > example: > > > > [...] > > > > I know that some may say, "just use lowercase class name for the > > constructor in the function entry list", but that messes with nice > > class/function names again. > >Maybe we can finally fix the OO model and just make them case-sensitive? :) >If that's not an option, I think the patch is OK. Ok before making PHP case-sensitiv i also agree to your patch even though adding any strlowering at c level slows down the engine... marcus