在PHP中加载XML和XSL文件

时间:2012-03-16 12:02:41

标签: php xml xslt

我正在使用XML和XSL文件开发PHP应用程序。如何将XML文件加载到$ xml变量中,将XSL文件加载到$ xsl变量中?

2 个答案:

答案 0 :(得分:3)

这里的简单例子

$proc = new XSLTProcessor();

$xsl = new DOMDocument();
$xsl->load("your.xsl");  // load XSL

$xml = new DOMDocument(); 
$xml->load("your.xml");  // load XML

$proc->importStylesheet($xsl);
echo $proc->transformToXML($xml); // transform XML

XSL docs are here

答案 1 :(得分:1)

至于你的XML问题,看看PHP的SimpleXML类。这是一个详细的教程,解释了如何加载XML文件以及如何开始解析它:

Parsing XML with the SimpleXML class