Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:7783 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 3640 invoked by uid 1010); 12 Feb 2004 14:33:43 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 3580 invoked by uid 1007); 12 Feb 2004 14:33:43 -0000 Date: 12 Feb 2004 14:33:43 -0000 Message-ID: <20040212143343.3579.qmail@pb1.pair.com> To: internals@lists.php.net Organization: X-User-Real-E-Mail: your email address User-Agent: PHP News Reader v2.4.1 (CDSHEEN) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8bit X-HTTP-Posting-Host: unknown, unknown X-HTTP-Proxy-Server: 164.129.1.39 References: <5.1.0.14.2.20040212113428.02b40b20@127.0.0.1> X-Posted-By: 64.21.80.2 Subject: Re: Beta 4 RC 1 From: stephane.drouard@st.com (Stephane Drouard) == Quote from Andi Gutmans (andi@zend.com)'s article > I rolled a preliminary beta 4 package just to make sure nothing is > seriously broken. You can still commit fixes in the next few hours and if I > don't hear of any serious show stoppers, I'll re-bundle and release beta 4 > later today. Andi, Not a big issue, but a different behaviour compared with beta3 and some following snapshots. foo = 5; } f(); ?> Reports: Fatal error: Uncaught exception 'exception' with message 'error' in /var/www/html/set.php:5 Stack trace: #0 /var/www/html/set.php(11): Test->__set() #1 /var/www/html/set.php(11): f() #2 /var/www/html/set.php(14): f() #3 {main} thrown in /var/www/html/set.php on line 5 There is an additional #1 in the stack trace. When executed outside the context of a function, the reported function is "unknown()". This also happens with __get, __toString, __call and __clone. But not with __construct and __destruct. Regards, Stephane