Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:23288 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 19490 invoked by uid 1010); 11 May 2006 23:05:34 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 19475 invoked from network); 11 May 2006 23:05:34 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 11 May 2006 23:05:34 -0000 X-PHP-List-Original-Sender: dante@vocalspace.com X-Host-Fingerprint: 69.56.193.72 fox02.stravio.com Linux 2.5 (sometimes 2.4) (4) Received: from ([69.56.193.72:50978] helo=fox02.stravio.com) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 53/37-19568-E33C3644 for ; Thu, 11 May 2006 19:05:34 -0400 Received: from [127.0.0.1] (unknown [66.243.31.162]) by fox02.stravio.com (Postfix) with ESMTP id A587526C355; Thu, 11 May 2006 18:05:31 -0500 (CDT) Message-ID: <4463C33A.9080508@vocalspace.com> Date: Thu, 11 May 2006 18:05:30 -0500 User-Agent: Thunderbird 1.5.0.2 (Windows/20060308) MIME-Version: 1.0 To: Antony Dovgal Cc: PHPdev References: <4463BF89.9040906@vocalspace.com> <4463C105.8080007@zend.com> In-Reply-To: <4463C105.8080007@zend.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] allow extension writers to ignore E_NOTICE warnings about unset variables From: dante@vocalspace.com ("D. Dante Lorenso") Antony Dovgal wrote: > On 12.05.2006 02:49, D. Dante Lorenso wrote: >> * #define ZEND_SEND_BY_REF 1 > This one is what you need. I don't think it is. The variable did not exist before the function was called and should STILL not exist afterwards. I believe when you pass by reference, the variable will exist after the call. This is bad since future calls to 'isset' will suddenly start returning TRUE when they shouldn't. Dante