as well as binary-assign-ops)
}
/* }}} */
+static zval *sxe_get_value(zval *z TSRMLS_DC)
+{
+ zval *retval;
+
+ MAKE_STD_ZVAL(retval);
+
+ if (sxe_object_cast(z, retval, IS_STRING, 0 TSRMLS_CC)==FAILURE) {
+ zend_error(E_ERROR, "Unable to cast node to string");
+ }
+
+ retval->refcount = 0;
+ return retval;
+}
+
+
static zend_object_handlers sxe_object_handlers = {
ZEND_OBJECTS_STORE_HANDLERS,
sxe_property_read,
sxe_dimension_read,
sxe_dimension_write,
NULL,
- NULL,
+ sxe_get_value, /* get */
NULL,
sxe_property_exists,
sxe_property_delete,