summaryrefslogtreecommitdiff
path: root/Zend/zend_object_handlers.c
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2003-05-27 18:52:25 +0000
committerSterling Hughes <sterling@php.net>2003-05-27 18:52:25 +0000
commitae2bfb78808099609f516b4be0d4282c528d192a (patch)
treeddf55cc49d076fc50ec7e6c034c5a99b5dc2b798 /Zend/zend_object_handlers.c
parentc60879dbb92fde970a95598fc1b860a1cda75f46 (diff)
downloadphp-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.c3
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 */
};
/*