12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- if ((__p)->type == XML_TEXT_NODE) { \
- goto next_iter; \
- }
- #define GET_NODE(__s, __n) { \
- if ((__s)->node && (__s)->node->node) { \
- __n = (__s)->node->node; \
- } else { \
- __n = NULL; \
- php_error_docref(NULL TSRMLS_CC, E_WARNING, "Node no longer exists"); \
- } \
- }
- PHP_SXE_API zend_object_value sxe_object_new(zend_class_entry *ce TSRMLS_DC);
- static inline php_sxe_object *
- php_sxe_fetch_object(zval *object TSRMLS_DC)
- {
- return (php_sxe_object *) zend_object_store_get_object(object TSRMLS_CC);
- }
- typedef struct {
- zend_object_iterator intern;
- php_sxe_object *sxe;
- } php_sxe_iterator;
|