%PDF- %PDF-
| Direktori : /data/bordel/scanned/ |
| Current File : //data/bordel/scanned/transform.php |
<?php
header("Content-type: text/xml");
function transform($xml, $xsl)
{
$xslt = new XSLTProcessor();
$xslt->importStylesheet(new SimpleXMLElement($xsl));
return $xslt->transformToXml(new SimpleXMLElement($xml));
}
$in = file_get_contents("sourceTo.xml");
$xsl = file_get_contents("transformTo.xsl");
echo transform($in, $xsl);
?>