好吧,这让我发疯了。我正在尝试使用 XML 文件和一些 PHP 制作一个简单的 CMS。我有一个这样的 XML 文件:
<?xml version="1.0" encoding="utf-8"?>
<sections>
<section name="about">
<maintext>
<p>Here is some maintext. </p>
</maintext>
</section>
<section name="james">
<maintext>
<p>Zippidy do.</p>
</maintext>
</section>
</sections>
然后是 XSL 文件:
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" />
<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="section">
<div class="section">
<xsl:apply-templates />
</div>
</xsl:template>
<xsl:template match="maintext">
<xsl:copy-of select="child::node()" />
</xsl:template>
</xsl:stylesheet>
这种转换效果很好 - 我得到了几个简单的段落:
<p>Here is some maintext. </p>
<p>Zippidy do.</p>
但是,我现在有一个 PHP 文件,它应该查询 XML,根据它的 GET 参数获取一个特定的“部分”。然后只对 XML 的那一部分运行转换,并回显结果。
<?php
$sectionName = $_GET["section"];
$content = new DOMDocument();
$content->load("content.xml");
$transformation = new DOMDocument();
$transformation->load("transform-content.xsl");
$processor = new XSLTProcessor();
$processor->importStyleSheet($transformation);
$xpath = new DOMXPath($content);
$sectionXML = $xpath->query("section[@name='".$sectionName."']")->item(0);
echo $processor->transformToXML($sectionXML);
?>
麻烦的是,无论我做什么,整个 XML 文件都会被转换,而不仅仅是我用查询选择的部分。我在这里做错了什么?!