Go to the source code of this file.
|
| #define | get_attribute(node, name) |
| |
| #define | get_node(node, name) |
| |
| #define | get_node_recursive(node, name) |
| |
| #define | get_node_with_attribute(node, name, attr, val) |
| |
| #define | get_node_with_attribute_recursive(node, name, attr, val) |
| |
| #define | node_is_equal(node, name) |
| |
| #define | attr_is_equal(node, name) |
| |
| #define | FOREACHATTRNODE(n, c, i) |
| |
| #define | FOREACHATTRNODEEX(n, c, ns, i) |
| |
| #define | FOREACHNODE(n, c, i) |
| |
| #define | FOREACHNODEEX(n, c, ns, i) |
| |
| #define | ENDFOREACH(n) |
| |
|
| xmlDocPtr | soap_xmlParseFile (const char *filename) |
| |
| xmlDocPtr | soap_xmlParseMemory (const void *buf, size_t size) |
| |
| xmlNsPtr | attr_find_ns (xmlAttrPtr node) |
| |
| xmlNsPtr | node_find_ns (xmlNodePtr node) |
| |
| int | attr_is_equal_ex (xmlAttrPtr node, char *name, char *ns) |
| |
| int | node_is_equal_ex (xmlNodePtr node, char *name, char *ns) |
| |
| xmlAttrPtr | get_attribute_ex (xmlAttrPtr node, char *name, char *ns) |
| |
| xmlNodePtr | get_node_ex (xmlNodePtr node, char *name, char *ns) |
| |
| xmlNodePtr | get_node_recursive_ex (xmlNodePtr node, char *name, char *ns) |
| |
| xmlNodePtr | get_node_with_attribute_ex (xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns) |
| |
| xmlNodePtr | get_node_with_attribute_recursive_ex (xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns) |
| |
| void | parse_namespace (const xmlChar *inval, const char **value, char **namespace) |
| |
◆ attr_is_equal
Value:
int attr_is_equal_ex(xmlAttrPtr node, char *name, char *ns)
Definition at line 28 of file php_xml.h.
◆ ENDFOREACH
◆ FOREACHATTRNODE
| #define FOREACHATTRNODE |
( |
| n, |
|
|
| c, |
|
|
| i ) |
Value:
#define FOREACHATTRNODEEX(n, c, ns, i)
Definition at line 44 of file php_xml.h.
◆ FOREACHATTRNODEEX
| #define FOREACHATTRNODEEX |
( |
| n, |
|
|
| c, |
|
|
| ns, |
|
|
| i ) |
Value: do { \
break; \
} \
if (c) { \
} else { \
} \
xmlAttrPtr get_attribute_ex(xmlAttrPtr node, char *name, char *ns)
Definition at line 45 of file php_xml.h.
◆ FOREACHNODE
Value:
#define FOREACHNODEEX(n, c, ns, i)
Definition at line 58 of file php_xml.h.
◆ FOREACHNODEEX
| #define FOREACHNODEEX |
( |
| n, |
|
|
| c, |
|
|
| ns, |
|
|
| i ) |
Value: do { \
break; \
} \
if (c) { \
} else { \
} \
xmlNodePtr get_node_ex(xmlNodePtr node, char *name, char *ns)
Definition at line 59 of file php_xml.h.
◆ get_attribute
◆ get_node
◆ get_node_recursive
Value:
xmlNodePtr get_node_recursive_ex(xmlNodePtr node, char *name, char *ns)
Definition at line 24 of file php_xml.h.
◆ get_node_with_attribute
Value:
xmlNodePtr get_node_with_attribute_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns)
Definition at line 25 of file php_xml.h.
◆ get_node_with_attribute_recursive
Value:
xmlNodePtr get_node_with_attribute_recursive_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns)
Definition at line 26 of file php_xml.h.
◆ node_is_equal
Value:
int node_is_equal_ex(xmlNodePtr node, char *name, char *ns)
Definition at line 27 of file php_xml.h.
◆ attr_find_ns()
| xmlNsPtr attr_find_ns |
( |
xmlAttrPtr | node | ) |
|
◆ attr_is_equal_ex()
| int attr_is_equal_ex |
( |
xmlAttrPtr | node, |
|
|
char * | name, |
|
|
char * | ns ) |
◆ get_attribute_ex()
| xmlAttrPtr get_attribute_ex |
( |
xmlAttrPtr | node, |
|
|
char * | name, |
|
|
char * | ns ) |
◆ get_node_ex()
| xmlNodePtr get_node_ex |
( |
xmlNodePtr | node, |
|
|
char * | name, |
|
|
char * | ns ) |
◆ get_node_recursive_ex()
| xmlNodePtr get_node_recursive_ex |
( |
xmlNodePtr | node, |
|
|
char * | name, |
|
|
char * | ns ) |
◆ get_node_with_attribute_ex()
| xmlNodePtr get_node_with_attribute_ex |
( |
xmlNodePtr | node, |
|
|
char * | name, |
|
|
char * | name_ns, |
|
|
char * | attribute, |
|
|
char * | value, |
|
|
char * | attr_ns ) |
◆ get_node_with_attribute_recursive_ex()
| xmlNodePtr get_node_with_attribute_recursive_ex |
( |
xmlNodePtr | node, |
|
|
char * | name, |
|
|
char * | name_ns, |
|
|
char * | attribute, |
|
|
char * | value, |
|
|
char * | attr_ns ) |
◆ node_find_ns()
| xmlNsPtr node_find_ns |
( |
xmlNodePtr | node | ) |
|
◆ node_is_equal_ex()
| int node_is_equal_ex |
( |
xmlNodePtr | node, |
|
|
char * | name, |
|
|
char * | ns ) |
◆ parse_namespace()
| void parse_namespace |
( |
const xmlChar * | inval, |
|
|
const char ** | value, |
|
|
char ** | namespace ) |
◆ soap_xmlParseFile()
| xmlDocPtr soap_xmlParseFile |
( |
const char * | filename | ) |
|
◆ soap_xmlParseMemory()
| xmlDocPtr soap_xmlParseMemory |
( |
const void * | buf, |
|
|
size_t | size ) |