mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
Group PHP_FE and PHP_FALIAS with their own kind.
This commit is contained in:
parent
a26110de2c
commit
14f05c17dd
1 changed files with 13 additions and 11 deletions
|
@ -79,28 +79,18 @@ static zend_function_entry domxml_functions[] = {
|
||||||
PHP_FE(xmldoc, NULL)
|
PHP_FE(xmldoc, NULL)
|
||||||
PHP_FE(xmldocfile, NULL)
|
PHP_FE(xmldocfile, NULL)
|
||||||
PHP_FE(xmltree, NULL)
|
PHP_FE(xmltree, NULL)
|
||||||
PHP_FALIAS(domxml_root, domxml_doc_document_element, NULL)
|
|
||||||
PHP_FE(domxml_add_root, NULL)
|
PHP_FE(domxml_add_root, NULL)
|
||||||
PHP_FE(domxml_dumpmem, NULL)
|
PHP_FE(domxml_dumpmem, NULL)
|
||||||
PHP_FE(domxml_node_attributes, NULL)
|
PHP_FE(domxml_node_attributes, NULL)
|
||||||
PHP_FALIAS(domxml_attributes, domxml_node_attributes, NULL)
|
|
||||||
PHP_FE(domxml_elem_get_attribute, NULL)
|
PHP_FE(domxml_elem_get_attribute, NULL)
|
||||||
PHP_FALIAS(domxml_get_attribute, domxml_elem_get_attribute, NULL)
|
|
||||||
PHP_FALIAS(domxml_getattr, domxml_elem_get_attribute, NULL)
|
|
||||||
PHP_FE(domxml_elem_set_attribute, NULL)
|
PHP_FE(domxml_elem_set_attribute, NULL)
|
||||||
PHP_FALIAS(domxml_set_attribute, domxml_elem_set_attribute, NULL)
|
|
||||||
PHP_FALIAS(domxml_setattr, domxml_elem_set_attribute, NULL)
|
|
||||||
PHP_FE(domxml_node_children, NULL)
|
PHP_FE(domxml_node_children, NULL)
|
||||||
PHP_FALIAS(domxml_children, domxml_node_children, NULL)
|
|
||||||
PHP_FE(domxml_node_new_child, NULL)
|
PHP_FE(domxml_node_new_child, NULL)
|
||||||
PHP_FALIAS(domxml_new_child, domxml_node_new_child, NULL)
|
|
||||||
PHP_FE(domxml_node, NULL)
|
PHP_FE(domxml_node, NULL)
|
||||||
PHP_FE(domxml_node_unlink_node, NULL)
|
PHP_FE(domxml_node_unlink_node, NULL)
|
||||||
PHP_FALIAS(domxml_unlink_node, domxml_node_unlink_node, NULL)
|
|
||||||
PHP_FE(domxml_node_set_content, NULL)
|
PHP_FE(domxml_node_set_content, NULL)
|
||||||
PHP_FALIAS(set_content, domxml_node_set_content, NULL)
|
|
||||||
PHP_FE(domxml_new_xmldoc, NULL)
|
PHP_FE(domxml_new_xmldoc, NULL)
|
||||||
PHP_FALIAS(new_xmldoc, domxml_new_xmldoc, NULL)
|
|
||||||
#if defined(LIBXML_XPATH_ENABLED)
|
#if defined(LIBXML_XPATH_ENABLED)
|
||||||
PHP_FE(xpath_new_context, NULL)
|
PHP_FE(xpath_new_context, NULL)
|
||||||
PHP_FE(xpath_eval, NULL)
|
PHP_FE(xpath_eval, NULL)
|
||||||
|
@ -110,6 +100,18 @@ static zend_function_entry domxml_functions[] = {
|
||||||
PHP_FE(xptr_new_context, NULL)
|
PHP_FE(xptr_new_context, NULL)
|
||||||
PHP_FE(xptr_eval, NULL)
|
PHP_FE(xptr_eval, NULL)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
PHP_FALIAS(domxml_root, domxml_doc_document_element, NULL)
|
||||||
|
PHP_FALIAS(domxml_attributes, domxml_node_attributes, NULL)
|
||||||
|
PHP_FALIAS(domxml_get_attribute, domxml_elem_get_attribute, NULL)
|
||||||
|
PHP_FALIAS(domxml_getattr, domxml_elem_get_attribute, NULL)
|
||||||
|
PHP_FALIAS(domxml_set_attribute, domxml_elem_set_attribute, NULL)
|
||||||
|
PHP_FALIAS(domxml_setattr, domxml_elem_set_attribute, NULL)
|
||||||
|
PHP_FALIAS(domxml_children, domxml_node_children, NULL)
|
||||||
|
PHP_FALIAS(domxml_new_child, domxml_node_new_child, NULL)
|
||||||
|
PHP_FALIAS(domxml_unlink_node, domxml_node_unlink_node, NULL)
|
||||||
|
PHP_FALIAS(set_content, domxml_node_set_content, NULL)
|
||||||
|
PHP_FALIAS(new_xmldoc, domxml_new_xmldoc, NULL)
|
||||||
{NULL, NULL, NULL}
|
{NULL, NULL, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue