PHP Dokumentation: Function domxsltstylesheet-process
12. Januar 2010 von werner
DomXsltStylesheet->process
(PHP 4 >= 4.1.0)
DomXsltStylesheet->process — Applies the XSLT-Transformation on a DomDocument Object
Beschreibung
Applies an XSLT Transformation on the given DomDocument object.
Parameter-Liste
- xml_doc
The XML document being transformed, as a DomDocument object.
- xslt_params
An associative array that takes pairs of parameter names and values.
- is_xpath_param
If set to FALSE the values of the xslt_params will be quoted. This is the default behavior. It allows you to pass the values as PHP strings.
Hinweis: If your strings contains both single and double quotes, you must take care of quoting all the values by yourself and set this parameter to TRUE.
- profile_filename
Set this to the path of a filename, if you want profiling information.
Rückgabewerte
Returns the result of the processing, as a DomDocument object.
Migrating to PHP 5
Use XSLTProcessor::setParameter() and XSLTProcessor::transform-to-doc().
Changelog
| Version | Beschreibung |
|---|---|
| 4.3.0 | The profile_filename parameter was added. |
Siehe auch
- domxml_xslt_stylesheet() – Creates a DomXsltStylesheet object from an XSL document in a string
- domxml_xslt_stylesheet_file() – Creates a DomXsltStylesheet Object from an XSL document in a file
- domxml_xslt_stylesheet_doc() – Creates a DomXsltStylesheet Object from a DomDocument Object