Rate this script:  I Love it  /   I Hate it

apply XSLT transformation on an XML content with PHP4


Code

   
    $xh = xslt_create();
    $arguments = array('/_xml' => $xml, '/_xsl' => $xsl);
   
    $params = array(
        //~ 'param1' => "hello world",
      );
   
    $result = xslt_process($xh, 'arg:/_xml', 'arg:/_xsl', NULL, $arguments,$params);
   
    xslt_free($xh);
 

 

 
apply XSLT transformation on an XML content with PHP4 scripts | apply XSLT transformation on an XML content with PHP4 snippet | apply XSLT transformation on an XML content with PHP4 example | apply XSLT transformation on an XML content with PHP4 tutorial | apply XSLT transformation on an XML content with PHP4 code