On 6/10/06, Michael B Allen <mba2000@ioplex.com> wrote:
> Can anyone spot the bug in following code from the tutorial [1]?
>
> PHP_FUNCTION(hello_dump)
> {
> zval *uservar;
>
> if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", uservar) == FAILURE) {
zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &uservar
(it takes a ptr ptr)
--Pierre