Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:3313 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 33698 invoked from network); 8 Jul 2003 21:40:55 -0000 Received: from unknown (HELO milton.schell.de) (217.160.72.35) by pb1.pair.com with SMTP; 8 Jul 2003 21:40:55 -0000 Received: (qmail 8954 invoked by uid 501); 8 Jul 2003 21:40:54 -0000 Received: from unknown (HELO eco.foo) (80.143.57.37) by kdserv.de with SMTP; 8 Jul 2003 21:40:54 -0000 Received: from localhost (localhost [127.0.0.1]) by eco.foo (Postfix) with ESMTP id F05D9301DC; Tue, 8 Jul 2003 23:40:53 +0200 (CEST) Date: Tue, 8 Jul 2003 23:40:53 +0200 (CEST) X-X-Sender: sas@eco.foo To: fuhs@purdue.edu Cc: internals@lists.php.net In-Reply-To: <1057699980.3f0b388c49ac8@webmail.purdue.edu> Message-ID: References: <1057699980.3f0b388c49ac8@webmail.purdue.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: [PHP-DEV] Question: How do you get a zval** in a non-deprecated way? From: sascha@schumann.cx (Sascha Schumann) On Tue, 8 Jul 2003 fuhs@purdue.edu wrote: > Hello, > > I would like to use zend_parse_parameters() to retrieve a zval** but it > currently does not do this. get_parameters() which does return zval**'s has been > deprecated. I don't want to use the '/' option with zend_parse_parameters() > because zval separation may not be necessary, and I would like to avoid it > whenever possible. The old APIs are not really deprecated. The new APIs are simply recommended over the old ones. So, if you are running into a case where zend_get_parameters works better for you, go ahead and use it. - Sascha