Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

apply XSLT transformation on an XML content with PHP4 (See related posts)

$xml: should be an xml content buffer
$xsl: should be an xsl content buffer
$result : will be the result ;-)

    
    $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);

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts