Sophie

Sophie

distrib > Mandriva > 2007.0 > i586 > by-pkgid > 764742993d32c7939934519f5e2386e4 > files > 4

php4-xslt-4.4.4-1mdv2007.0.src.rpm

<?php

/**
 * $xml contains the contents of an XML file and $xsl contains
 * the contents of an XSLT stylesheet
 */
/*
$args = array("/_xml" => $xml,
		"/_xsl" => $xsl);
*/
$xml="foo.xml";
$xsl="foo.xsl";

$xh = xslt_create();
$data = xslt_process($xh, $xml, $xsl, NULL);
echo $data;
xslt_free($xh);
?>