X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=src%2Fphp_pq_object.c;h=704737ff95b1fcc2fcb95fccbed9ea7834ed5155;hp=78db20f2c56d04be1f55d08a3ac1c73965ef197e;hb=cd5d3cdafda1f9e9fe120c9eaf1269fdc577f04d;hpb=9f5cecf26bd70a92ed013f31afec59e272623ac1 diff --git a/src/php_pq_object.c b/src/php_pq_object.c index 78db20f..704737f 100644 --- a/src/php_pq_object.c +++ b/src/php_pq_object.c @@ -70,7 +70,7 @@ static int apply_pi_to_ht(void *p TSRMLS_DC, int argc, va_list argv, zend_hash_k if (addref) { Z_ADDREF_P(property); } - zend_hash_add(ht, pi->name, pi->name_length + 1, (void *) &property, sizeof(zval *), NULL); + zend_hash_update(ht, pi->name, pi->name_length + 1, (void *) &property, sizeof(zval *), NULL); return ZEND_HASH_APPLY_KEEP; } @@ -89,6 +89,16 @@ HashTable *php_pq_object_debug_info(zval *object, int *temp TSRMLS_DC) return ht; } +HashTable *php_pq_object_properties(zval *object TSRMLS_DC) +{ + HashTable *ht = zend_get_std_object_handlers()->get_properties(object TSRMLS_CC); + php_pq_object_t *obj = zend_object_store_get_object(object TSRMLS_CC); + + zend_hash_apply_with_arguments(&obj->zo.ce->properties_info TSRMLS_CC, apply_pi_to_ht, 4, ht, object, obj, 1); + + return ht; +} + zend_class_entry *ancestor(zend_class_entry *ce) { while (ce->parent) {