diff options
author | Sterling Hughes <sterling@php.net> | 2003-05-27 18:52:25 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2003-05-27 18:52:25 +0000 |
commit | ae2bfb78808099609f516b4be0d4282c528d192a (patch) | |
tree | ddf55cc49d076fc50ec7e6c034c5a99b5dc2b798 /Zend/zend_object_handlers.c | |
parent | c60879dbb92fde970a95598fc1b860a1cda75f46 (diff) | |
download | php-git-ae2bfb78808099609f516b4be0d4282c528d192a.tar.gz |
Assume lazy consensus regarding the cast_object() patch. *Only* implemented
from a internals perspective. This callback has been very useful for both
ext/mono and ext/simplexml
Diffstat (limited to 'Zend/zend_object_handlers.c')
-rw-r--r-- | Zend/zend_object_handlers.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zend/zend_object_handlers.c b/Zend/zend_object_handlers.c index 1932d8c8d3..4147f9e786 100644 --- a/Zend/zend_object_handlers.c +++ b/Zend/zend_object_handlers.c @@ -830,7 +830,8 @@ zend_object_handlers std_object_handlers = { zend_std_get_constructor, /* get_constructor */ zend_std_object_get_class, /* get_class_entry */ zend_std_object_get_class_name, /* get_class_name */ - zend_std_compare_objects /* compare_objects */ + zend_std_compare_objects, /* compare_objects */ + NULL, /* cast_object */ }; /* |