|
|
|
@ -282,8 +282,8 @@ static zend_function_entry domxml_functions[] = { |
|
|
|
PHP_FE(domxml_xslt_stylesheet_doc, NULL) |
|
|
|
PHP_FE(domxml_xslt_stylesheet_file, NULL) |
|
|
|
PHP_FE(domxml_xslt_process, NULL) |
|
|
|
PHP_FE(domxml_xslt_dump_mem, NULL) |
|
|
|
PHP_FE(domxml_xslt_dump_file, NULL) |
|
|
|
PHP_FE(domxml_xslt_result_dump_mem, NULL) |
|
|
|
PHP_FE(domxml_xslt_result_dump_file, NULL) |
|
|
|
#endif |
|
|
|
|
|
|
|
PHP_FALIAS(domxml_add_root, domxml_doc_add_root, NULL) |
|
|
|
@ -523,8 +523,8 @@ static zend_function_entry php_domxmlns_class_functions[] = { |
|
|
|
static zend_function_entry php_domxsltstylesheet_class_functions[] = { |
|
|
|
/* TODO: maybe some more methods? */ |
|
|
|
PHP_FALIAS(process, domxml_xslt_process, NULL) |
|
|
|
PHP_FALIAS(dump_mem, domxml_xslt_dump_mem, NULL) |
|
|
|
PHP_FALIAS(dump_file, domxml_xslt_dump_file, NULL) |
|
|
|
PHP_FALIAS(result_dump_mem, domxml_xslt_result_dump_mem, NULL) |
|
|
|
PHP_FALIAS(result_dump_file, domxml_xslt_result_dump_file, NULL) |
|
|
|
{NULL, NULL, NULL} |
|
|
|
}; |
|
|
|
#endif |
|
|
|
@ -5179,9 +5179,9 @@ PHP_FUNCTION(domxml_xslt_process) |
|
|
|
} |
|
|
|
/* }}} */ |
|
|
|
|
|
|
|
/* {{{ proto string domxml_xslt_dump_mem(object xslstylesheet, object xmldoc) |
|
|
|
/* {{{ proto string domxml_xslt_result_dump_mem(object xslstylesheet, object xmldoc) |
|
|
|
output XSLT result to memory */ |
|
|
|
PHP_FUNCTION(domxml_xslt_dump_mem) |
|
|
|
PHP_FUNCTION(domxml_xslt_result_dump_mem) |
|
|
|
{ |
|
|
|
zval *rv, *idxsl, *idxml; |
|
|
|
xsltStylesheetPtr xsltstp; |
|
|
|
@ -5216,9 +5216,9 @@ PHP_FUNCTION(domxml_xslt_dump_mem) |
|
|
|
} |
|
|
|
/* }}} */ |
|
|
|
|
|
|
|
/* {{{ proto int domxml_xslt_dump_file(object xslstylesheet, object xmldoc, string filename[, int compression]) |
|
|
|
/* {{{ proto int domxml_xslt_result_dump_file(object xslstylesheet, object xmldoc, string filename[, int compression]) |
|
|
|
output XSLT result to File */ |
|
|
|
PHP_FUNCTION(domxml_xslt_dump_file) |
|
|
|
PHP_FUNCTION(domxml_xslt_result_dump_file) |
|
|
|
{ |
|
|
|
zval *rv, *idxsl, *idxml; |
|
|
|
xsltStylesheetPtr xsltstp; |
|
|
|
|