问题:我有一个存储在数据库中的 XML 片段,我想将它与数据库中的其他几个字段结合起来,并使用 PHP 中的 HTML 呈现它们。
我的解决方案:我有 Perl 后端脚本
$query = "select id, description, xml_content, name from table where id = '$id'";
然后修改 XML 以包含这些字段。
$xml_content =~ s|<Record>|<Record name="$name" id="$id" desc="$desc">|i;
然后我使用 XSL 文件将其转换为
<xsl:output method="html"/>
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<form action="info.php" method="get" accept-charset="utf-8">
<label for="id">Display xml for: </label>
<input type="text" name="id" value="" id="id" size="40"/>
<p><input type="submit" value="Display it! →"/></p>
</form>
<xsl:apply-templates/>
</body>
</html>
</xsl:template>
<xsl:template match="doc:Record">
<p>
<xsl:choose>
<xsl:when test="./@none">
XML Content ID <xsl:value-of select="@id"/> NOT FOUND
</xsl:when>
<xsl:otherwise>
XML Content ID <xsl:value-of select="@id"/> Found
<xsl:value-of select="@desc"/> - <xsl:value-of select="@name"/>
</xsl:otherwise>
</xsl:choose>
</p>
</xsl:template>
然后我使用 PHP 获取 CGI 变量并运行 perl 脚本并显示输出。
<?php
if (!empty($_GET['id'])) {
$command = "getxml.pl --id=" . $_GET['id'];
$process = proc_open($command, $descriptorspec, $pipes, null, $_SERVER);
if (is_resource($process)) {
$line = stream_get_contents($pipes[1]);
} else {
$line = '<Record none="" desc="' . $command . '"></Record>';
}
}
header('Content-type: text/xml');
echo '<?xml version="1.0" encoding="ISO-8859-1"?>';
echo '<?xml-stylesheet type="text/xsl" href="xmlinfo.xsl"?>';
echo "\n";
if (empty($command)) {
#Display the form only.
$line = '<Record></Record >';
}
echo "$line \n";
?>
由于 PHP 是在没有 xslt 的情况下配置的,所以这是我能想到的唯一使用 PHP 在 HTML 中显示 XML 的方法。
我的问题是:
- 有没有办法删除
<html><body><form>
XSL 中的部分并将其放入 PHP 中。这样看起来会干净得多。
谢谢。