Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:35030 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 15298 invoked by uid 1010); 30 Jan 2008 15:32:33 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 15283 invoked from network); 30 Jan 2008 15:32:33 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 30 Jan 2008 15:32:33 -0000 Authentication-Results: pb1.pair.com smtp.mail=scottmac@php.net; spf=unknown; sender-id=unknown Authentication-Results: pb1.pair.com header.from=scottmac@php.net; sender-id=unknown Received-SPF: unknown (pb1.pair.com: domain php.net does not designate 72.232.140.210 as permitted sender) X-PHP-List-Original-Sender: scottmac@php.net X-Host-Fingerprint: 72.232.140.210 midden.org.uk Received: from [72.232.140.210] ([72.232.140.210:47235] helo=lovelace.midden.org.uk) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 16/55-14302-09890A74 for ; Wed, 30 Jan 2008 10:32:33 -0500 Received: from office.vbulletin.com ([217.155.246.60] helo=[10.0.0.116]) by lovelace.midden.org.uk with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.63) (envelope-from ) id 1JKEvM-0004BY-VH; Wed, 30 Jan 2008 15:32:29 +0000 Message-ID: <47A09884.8050000@php.net> Date: Wed, 30 Jan 2008 15:32:20 +0000 User-Agent: Thunderbird 2.0.0.9 (Windows/20071031) MIME-Version: 1.0 To: Marcus Boerger CC: php-dev References: <47A05612.4020505@php.net> <1462818236.20080130160605@marcus-boerger.de> In-Reply-To: <1462818236.20080130160605@marcus-boerger.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] BC break with callbacks in 5.3 From: scottmac@php.net (Scott MacVicar) Marcus, I fully agree that you should add static keywords if you intend to call a method statically, but it's not always possible. Some people are still maintaing a code base that runs in both PHP 4 and 5 without any significant changes. The other problem here is inconsistency, I can call the method statically at the moment but I can't do it via a callback? Either the behaviour needs to match or revert it back to an E_STRICT message until PHP 6. Scott Marcus Boerger wrote: > Hello Scott, > > actually it was a bug. We, sorry I, did not spot this in earlier versions. > Now saying you rely on a bug in PHP 5 to be able to execute PHP 4 code > simply does not work. > > marcus > > Wednesday, January 30, 2008, 11:48:50 AM, you wrote: > >> Hi all, > >> Static callbacks behave differently between 5.2 and 5.3, I recently >> noticed this when trying to install PEAR, it printed a warning each time >> call_user_func and call_user_func_array was used. > >> After some tracking down it seems like the callback option for >> zend_parse_parameters was backported from 6 but the strict check was >> left as is. > >> > class MyClass { function test($var) { echo "$var\n"; } } >> MyClass::Test('regular'); >> call_user_func(array('MyClass', 'test'), 'callback'); > ?>> > >> The prints E_STRICT errors in PHP 5.2 but in 5.3 you get a single >> E_STRICT error followed by a warning for call_user_func. > >> You can resolve this by adding the static keyword to the method >> declaration but regardless it's inconsistent as stands. I think the >> strict flag needs to be removed for 5.3. > >> Patch is attached to resolve the issue. > >> Scott > > > > Best regards, > Marcus >