summaryrefslogtreecommitdiff
path: root/Zend/zend_API.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-07-15 18:09:56 +0000
committerAndi Gutmans <andi@php.net>2002-07-15 18:09:56 +0000
commitbc5ea87e281aed931e64c55822c91cc29565c3f9 (patch)
treec38a7c1b50ca36316d552a385fe1889fe087d84d /Zend/zend_API.c
parent50ca75a0f614961fa1b5effc220c116a0bbda616 (diff)
downloadphp-git-bc5ea87e281aed931e64c55822c91cc29565c3f9.tar.gz
- Commit patch to support protected member variables (by Timm Friebe w/
- some fixes by me). - You can't access protected variables from outside the object. If you want - to see a protected member from your ancestors you need to declare the - member as protected in the class you want to use it in. You can't - redeclare a protected variable as private nor the other way around.
Diffstat (limited to 'Zend/zend_API.c')
-rw-r--r--Zend/zend_API.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_API.c b/Zend/zend_API.c
index cfd9159ac3..f1acf85024 100644
--- a/Zend/zend_API.c
+++ b/Zend/zend_API.c
@@ -1237,6 +1237,7 @@ ZEND_API zend_class_entry *zend_register_internal_class(zend_class_entry *orig_c
class_entry->constants_updated = 0;
zend_hash_init(&class_entry->default_properties, 0, NULL, ZVAL_PTR_DTOR, 1);
zend_hash_init(&class_entry->private_properties, 0, NULL, ZVAL_PTR_DTOR, 1);
+ zend_hash_init(&class_entry->protected_properties, 0, NULL, ZVAL_PTR_DTOR, 1);
class_entry->static_members = (HashTable *) malloc(sizeof(HashTable));
zend_hash_init(class_entry->static_members, 0, NULL, ZVAL_PTR_DTOR, 1);
zend_hash_init(&class_entry->constants_table, 0, NULL, ZVAL_PTR_DTOR, 1);