Sophie

Sophie

distrib > Mandriva > 10.2 > i586 > by-pkgid > 9a595a50a1431adab586774f0d518457 > files > 4

php-xslt-4.3.10-5mdk.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);
?>