Sophie

Sophie

distrib > Mandriva > 9.2 > i586 > media > main-src > by-pkgid > 8cd1fff78ae3a24943b71ab7c7ce9e8c > files > 4

php-xslt-4.3.2-3mdk.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);
?>