Sophie

Sophie

distrib > Mandriva > 2007.1 > i586 > by-pkgid > f84e448454efece6c43cded5a4d13140 > files > 4

php4-xslt-4.4.6-1mdv2007.1.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);
?>