Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:8555 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 78160 invoked by uid 1010); 17 Mar 2004 11:11:03 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 78064 invoked from network); 17 Mar 2004 11:11:02 -0000 Received: from unknown (HELO mail.zend.com) (192.117.235.230) by pb1.pair.com with SMTP; 17 Mar 2004 11:11:02 -0000 Received: (qmail 23250 invoked from network); 17 Mar 2004 11:10:52 -0000 Received: from guardian.zend.office (HELO AndiNotebook.zend.com) (10.1.1.4) by mail.zend.com with SMTP; 17 Mar 2004 11:10:52 -0000 Message-ID: <5.1.0.14.2.20040317131037.022fa238@127.0.0.1> X-Sender: andi@127.0.0.1 X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Wed, 17 Mar 2004 13:10:52 +0200 To: "Clemens Gutweiler" , , In-Reply-To: <004801c40c0e$b1d50660$2801010a@laptop> References: <5.1.0.14.2.20040315080605.01732e80@127.0.0.1> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Subject: RE: [PHP-DEV] RC1 of RC1 From: andi@zend.com (Andi Gutmans) Only if you use E_STRICT. There was a long discussion about this on internals@ a few weeks ago. At 11:57 AM 3/17/2004 +0100, Clemens Gutweiler wrote: >Hi, > > > From: Andi Gutmans [mailto:andi@zend.com] > > > I rolled RC1 of RC1 (didn't change the version from -dev on > > purpose because > > RC1RC1 is kind of odd and I didn't want it to confuse people :). > > I will roll RC1 on the 17th so if there are "serious" show > > stoppers speak up. > > > interface person { > function wakeup( $day, $time ); > } > > class hugo implements person { > function wakeup( $day ) { > printf( "wake up on $day\n" ); > } > } > > $hugo = new hugo; > $hugo->wakeup( 'monday' ); > >?> > >Shouldn't this throw an fatal error because wakeup isn't complete >implemented? > >Current HEAD: > >$ /usr/local/php-5-fastcgi-200303171147/bin/php -f >/web/finalconstruct.php >wake up on monday > >Clemens