Searched refs:php_incomplete_object_handlers (Results 1 – 1 of 1) sorted by relevance
33 static zend_object_handlers php_incomplete_object_handlers; variable107 object->handlers = &php_incomplete_object_handlers; in php_create_incomplete_object()121 memcpy(&php_incomplete_object_handlers, &std_object_handlers, sizeof(zend_object_handlers)); in php_create_incomplete_class()122 php_incomplete_object_handlers.read_property = incomplete_class_get_property; in php_create_incomplete_class()123 php_incomplete_object_handlers.has_property = incomplete_class_has_property; in php_create_incomplete_class()124 php_incomplete_object_handlers.unset_property = incomplete_class_unset_property; in php_create_incomplete_class()125 php_incomplete_object_handlers.write_property = incomplete_class_write_property; in php_create_incomplete_class()126 php_incomplete_object_handlers.get_property_ptr_ptr = incomplete_class_get_property_ptr_ptr; in php_create_incomplete_class()127 php_incomplete_object_handlers.get_method = incomplete_class_get_method; in php_create_incomplete_class()
Completed in 5 milliseconds