我有以下XML:
<content>
<p>Para one</p>
<p>Para two</p>
<img src='pic.jpg' alt='pic'/>
</content>
在我的 XSLT 中,我有
<xsl:processing-instruction name="php">
$content = "<xsl:copy-of select="content/node()"/>";
</xsl:processing-instruction>
但它正在输出:
$content = "Para one
Para two";
我希望它输出:
$content = "<p>Para one</p><p>Para two</p><img src='pic.jpg' alt=='pic'/>";
我该怎么做?
通常,copy-of="node()"
检索元素的子节点。但是在处理指令的情况下,似乎只输出文本内容。
这对我来说没有意义,但下面的解决方案是解决此问题的方法。
样式表
<?xml version="1.0"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/content">
<xsl:processing-instruction name="php">
<xsl:text>$content = "</xsl:text>
<xsl:apply-templates/>
<xsl:text>";</xsl:text>
</xsl:processing-instruction>
</xsl:template>
<xsl:template match="content/*">
<xsl:text><</xsl:text><xsl:value-of select="name()"/><xsl:text>></xsl:text>
<xsl:value-of select="."/>
<xsl:text></</xsl:text><xsl:value-of select="name()"/><xsl:text>></xsl:text>
</xsl:template>
</xsl:stylesheet>
输出
<?php $content = "<p>Para one</p><p>Para two</p>";?>
这个脚本以及这个脚本给了我想要的结果:
<xsl:include href="nodetostring.xsl"/>
<xsl:template match="content">
<xsl:param name="content">
<xsl:apply-templates mode="nodetostring" select="node()"/>
</xsl:param>
<xsl:processing-instruction name="php">
$content = '<xsl:copy-of select="$content"/>';
</xsl:processing-instruction>
</xsl:template>