Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:23701 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 60537 invoked by uid 1010); 26 May 2006 20:59:55 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 60522 invoked from network); 26 May 2006 20:59:55 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 26 May 2006 20:59:55 -0000 X-Host-Fingerprint: 217.79.190.163 r163.red.fastwebserver.de Received: from ([217.79.190.163:11519] helo=localhost.localdomain) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 5B/41-17316-84C67744 for ; Fri, 26 May 2006 16:59:52 -0400 To: internals@lists.php.net,dante@vocalspace.com ("D. Dante Lorenso") Date: Fri, 26 May 2006 22:59:48 +0200 Message-ID: <20060526225948.7afd13a4@localhost.localdomain> In-Reply-To: <447768DF.1000203@vocalspace.com> References: <447768DF.1000203@vocalspace.com> Reply-To: pierre.php@gmail.com X-Newsreader: Sylpheed-Claws 2.1.0 (GTK+ 2.8.6; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Posted-By: 217.79.190.163 Subject: Re: extension can not receive unset values without E_NOTICE or reference creation From: pierre.php@gmail.com (Pierre) On Fri, 26 May 2006 15:45:19 -0500 dante@vocalspace.com ("D. Dante Lorenso") wrote: > All, > > Back on the topic of trying to write a 'filled' function in an > extension, I have run into trouble. I have declared a function as > follows: It is perfectly normal and desired. The variable is fetched before entering your function. This fetch operation raises a E_NOTICE, create/initialize the ZVAL and pass it to your function. -- Pierre