Re: Re[2]: [PHP-DEV] [PATCH] extend zend_parse_parameters() functionality (2nd attempt)

2003-06-27 Thread fuhs
Quoting Marcus Börger <[EMAIL PROTECTED]>: > Hello fuhs, > > Friday, June 27, 2003, 8:46:41 PM, you wrote: > > fpe> Quoting Andrei Zmievski <[EMAIL PROTECTED]>: > > >> > >> If you want zval**'s, use zend_get_parameters(). > >> > >> -Andrei > >> > > fpe> How does one get zval**'s in a non-de

Re[2]: [PHP-DEV] [PATCH] extend zend_parse_parameters() functionality (2nd attempt)

2003-06-27 Thread Marcus Börger
Hello fuhs, Friday, June 27, 2003, 8:46:41 PM, you wrote: fpe> Quoting Andrei Zmievski <[EMAIL PROTECTED]>: >> >> If you want zval**'s, use zend_get_parameters(). >> >> -Andrei >> fpe> How does one get zval**'s in a non-deprecated way? fpe> Josh "z/" instead og "z" :-) -- Best regards,

Re: [PHP-DEV] [PATCH] extend zend_parse_parameters() functionality (2nd attempt)

2003-06-27 Thread fuhs
Quoting Andrei Zmievski <[EMAIL PROTECTED]>: > > If you want zval**'s, use zend_get_parameters(). > > -Andrei > How does one get zval**'s in a non-deprecated way? Josh -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] [PATCH] extend zend_parse_parameters() functionality (2nd attempt)

2003-06-27 Thread Andrei Zmievski
On Fri, 27 Jun 2003, [EMAIL PROTECTED] wrote: > I propose that a new type, 'Z', be added in order to allow the extension coders > access to the zval** which was available with the now deprecated > zend_get_parameters(). > > I came to this conclusion after tracing some segfaults to a section of cod

[PHP-DEV] [PATCH] extend zend_parse_parameters() functionality (2nd attempt)

2003-06-27 Thread fuhs
Hello, I propose that a new type, 'Z', be added in order to allow the extension coders access to the zval** which was available with the now deprecated zend_get_parameters(). I came to this conclusion after tracing some segfaults to a section of code similar to this: zval *zend_value; if

[PHP-DEV] [PATCH] extend zend_parse_parameters() functionality

2003-06-18 Thread fuhs
Hello, I'm new to the world of contributing code for open source projects. Please let me know if I'm doing something incorrectly. I propose that a new type, 'Z', be added in order to allow the extension coders access to the zval** which was available with the now deprecated zend_get_parameters().