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





