static int node_children(zval **children, xmlNode *nodep);
static zend_function_entry domxml_functions[] = {
+ PHP_FE(domxml_version, NULL)
PHP_FE(xmldoc, NULL)
PHP_FE(xmldocfile, NULL)
PHP_FE(xmltree, NULL)
/* }}} */
#endif /* LIBXML_XPTR_ENABLED */
+/* {{{ proto string domxml_version()
+ Dumps document into string */
+PHP_FUNCTION(domxml_version)
+{
+
+ RETURN_STRING(LIBXML_DOTTED_VERSION, 1);
+}
+/* }}} */
+
#endif /* HAVE_DOMXML */
/*
* Local variables:
extern PHP_MINIT_FUNCTION(domxml);
extern PHP_RINIT_FUNCTION(domxml);
extern PHP_MINFO_FUNCTION(domxml);
+PHP_FUNCTION(domxml_version);
PHP_FUNCTION(xmldoc);
PHP_FUNCTION(xmldocfile);
PHP_FUNCTION(xmltree);