
php
Get flash to fully experience Pearltrees
The following code is a wrapper to support calls to some of the old xslt_* functions: if (PHP_VERSION >= 5) { // Emulate the old xslt library functions function xslt_create() { return new XsltProcessor(); } function xslt_process($xsltproc, $xml_arg, $xsl_arg, $xslcontainer = null, $args = null, $params = null) { // Start with preparing the arguments $xml_arg = str_replace('arg:', '', $xml_arg); $xsl_arg = str_replace('arg:', '', $xsl_arg); // Create instances of the DomDocument class $xml = new DomDocument; $xsl = new DomDocument;
XSL
Using PHP 5's DOM functions to create XML files from SQL data
By Tony Marston 22nd August 2004 Intended Audience Prerequisites A sample XML file - XML file contents A sample XSL file - XSL file contents XSL Include files - std.pagination.xsl - std.actionbar.xsl Performing the XSL Transformation - Creating an XSLT processor resource - Identifying and loading the XSL stylesheet - Identifying the XML document - Defining optional parameters - Invoking the XSLT process and displaying the result Sample output References Intended Audience
Using PHP 5's XSL extension to perform XSL Transformations
tutorials
frameworks

