Quoting Marcus Börger <marcus.boerger@t-online.de>:
> Hello fuhs,
>
> Friday, June 27, 2003, 8:46:41 PM, you wrote:
>
> fpe> Quoting Andrei Zmievski <andrei@gravitonic.com>:
>
> >>
> >> 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,
> Marcus mailto:helly@php.net
>
>
"z/" unecessarily separates the zval if I don't have to convert. I need the zval
to be an array, however, the zend_parse_parameters() functionality will not
convert from an object to an array if an object happens to be given. This is
behavior that I would prefer to have. Since it makes sense that
zend_parse_parameters() not automatically convert to an array with "a", I
proposed the "Z" type so that I could handle the conversion as I see fit. But,
since conversion is not always necessary, I didn't want to use "z/".
convert_to_array_ex() is the behavior I need, but I can't get a good zval** with
zend_parse_parameters() in its current state.
Josh