如何将xsl页面链接到我的php页面?

时间:2014-11-04 13:43:49

标签: php xml xslt

我有一个包含PHP的xml页面,因此它名为xml.php

我还创建了一个XSL样式表,它将为我的xml.php页面设置样式

但是我需要将xsl页面链接到我的php页面。我不能用

"<?xml-stylesheet type="text/xsl" href="XSLT.xsl"?>

因为我的页面是.php ??感谢

1 个答案:

答案 0 :(得分:0)

<?php

// Load the XML source
$xml = new DOMDocument;
$xml->load('collection.xml');

$xsl = new DOMDocument;
$xsl->load('collection.xsl');

// Configure the transformer
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl); // attach the xsl rules

echo $proc->transformToXML($xml);

?>