diff options
author | Marcus Boerger <helly@php.net> | 2004-08-16 08:48:25 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-08-16 08:48:25 +0000 |
commit | 041d23d7b68912a9542941aef16782adbded7573 (patch) | |
tree | 2baf99455b5d0198e98b5eeadc0ca93f7f8eefb0 /ext/reflection/php_reflection.c | |
parent | 60fc9c050a44e53bf33a819f60f50970bf1dca8c (diff) | |
download | php-git-041d23d7b68912a9542941aef16782adbded7573.tar.gz |
- Fix bug #29447: Reflection API issues
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index a7f9d2c144..c97bc5f5dc 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -2358,6 +2358,7 @@ ZEND_METHOD(reflection_class, getConstants) METHOD_NOTSTATIC_NUMPARAMS(0); GET_REFLECTION_OBJECT_PTR(ce); array_init(return_value); + zend_hash_apply_with_argument(&ce->constants_table, (apply_func_arg_t) zval_update_constant, (void*)1 TSRMLS_CC); zend_hash_copy(Z_ARRVAL_P(return_value), &ce->constants_table, (copy_ctor_func_t) zval_add_ref, (void *) &tmp_copy, sizeof(zval *)); } /* }}} */ @@ -2378,6 +2379,7 @@ ZEND_METHOD(reflection_class, getConstant) } GET_REFLECTION_OBJECT_PTR(ce); + zend_hash_apply_with_argument(&ce->constants_table, (apply_func_arg_t) zval_update_constant, (void*)1 TSRMLS_CC); if (zend_hash_find(&ce->constants_table, name, name_len + 1, (void **) &value) == FAILURE) { RETURN_FALSE; } |