Just wondering if there is a better way to test for reference equality than
what is listed below.

zval *objA;
zval *objB;

if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "oo", &objA, &objB) ==
FAILURE) 
{
        return;
}

// Reference equality only
if (Z_OBJ_HANDLE_P(objA) == Z_OBJ_HANDLE_P(objB))
{
    RETURN_TRUE
}
RETURN_FALSE


Also, should one be using zend_parse_method_parameters instead of the older
zend_parse_parameters now for object method functions or does it really
matter?

Thanks

Bob Silva aka Salty```

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to