Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:6713 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 43713 invoked by uid 1010); 24 Dec 2003 15:14:15 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 43675 invoked from network); 24 Dec 2003 15:14:14 -0000 Received: from unknown (HELO mx.thebrainroom.net) (65.200.24.98) by pb1.pair.com with SMTP; 24 Dec 2003 15:14:14 -0000 Received: by mx.thebrainroom.net (Postfix, from userid 517) id 285041488089; Wed, 24 Dec 2003 07:12:21 -0800 (PST) Received: from obsidian (zaneeb.thebrainroom.net [82.133.1.138]) by mx.thebrainroom.net (Postfix) with ESMTP id 307A31488087 for ; Wed, 24 Dec 2003 07:12:17 -0800 (PST) Message-ID: <007201c3ca30$74efcf20$8802a8c0@obsidian> To: Date: Wed, 24 Dec 2003 15:13:14 -0000 Organization: The Brain Room Ltd. MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-Spam-Status: No, hits=-0.3 required=5.0 tests=AWL version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) X-TBR-Filter: Virus scanned and defanged Subject: another issue to solve for PHP5 From: wez@thebrainroom.com ("Wez Furlong") We still need to solve the delayed triggering of exceptions thrown from C extensions or overloaded object handlers: $obj->foo()->bar(); ^ An exception thrown in foo() will not "detonate" until the end of the statement (the semicolon). What happens in this case is that $obj->foo() evalutates to null and then engine will then E_ERROR out when trying to call null->bar(). --Wez.