dsh8009271 2015-01-05 15:16
浏览 58
已采纳

XSLT处理器transformToXML没有样式信息

I am trying to use the XstlProcessor Class in PHP (version 5.5.19) to perform a xls-transformation. If I execute the script and the result gets printed, only the old xml file with no transformation is printed and it says "This XML file does not appear to have any style information associated with it.".

Part of the script which should perform the transformation:

$xml = new DomDocument;
$xml->load("tmp.xml");
$xsl = new DomDocument;
$xsl->load("bookings.xsl");

$proc = new XsltProcessor;
$proc->importStyleSheet($xsl);

$html = $proc->transformToXML($xml);
if(!$html) die('XLST processing error
');
echo $html;

The XSL-file

<?xml version="1.0" ?> 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
  <html>
  <body>
    <h2>Booking Overview</h2>
    <table border="1">
      <tr bgcolor="#9acd32">
        <th>Date</th>
        <th>Name</th>
        <th>Surname</th>
        <th>Street</th>
        <th>City</th>
        <th>Country</th>
        <th>Brand</th>
        <th>Model</th>
      </tr>
      <xsl:for-each select="bookings/booking">
        <tr>
          <td><xsl:value-of select="@bdate" /></td>
          <td><xsl:value-of select="customer/name"/></td>
          <td><xsl:value-of select="customer/surname"/></td>
          <td><xsl:value-of select="address/street"/></td>
          <td><xsl:value-of select="address/city"/></td>
          <td><xsl:value-of select="address/country"/></td>
          <td><xsl:value-of select="vehicle/brand"/></td>
          <td><xsl:value-of select="vehicle/model"/></td>
        </tr>
      </xsl:for-each>
    </table>
  </body>
  </html>
</xsl:template>
</xsl:stylesheet>

The XML-file

<?xml version="1.0" encoding="UTF-8"?>
<!-- all bookings-->
<bookings>
<!--booking-->
<booking bdate ="2015-01-14">
    <customer>
        <name>Josef</name>
        <surname>Mongo</surname>
    </customer>
    <address>
        <street>Alberstrasse</street>
        <city>Graz</city>
        <country>Austria</country>
    </address>
    <vehicle>
        <brand>Audi</brand>
        <model>R8</model>
    </vehicle>
</booking>
<!--booking-->
<booking bdate ="2014-07-23">
    <customer>
        <name>Hannelore</name>
        <surname>Metutschnik</surname>
    </customer>
    <address>
        <street>Moserhofgasse</street>
        <city>Graz</city>
        <country>Austria</country>
    </address>
    <vehicle>
        <brand>Fiat</brand>
        <model>Punto</model>
    </vehicle>
</booking>
<!--booking-->
<booking bdate ="2014-11-20">
    <customer>
        <name>Josef</name>
        <surname>Mongo</surname>
    </customer>
    <address>
        <street>Alberstrasse</street>
        <city>Graz</city>
        <country>Austria</country>
    </address>
    <vehicle>
        <brand>BMW</brand>
        <model>M6</model>
    </vehicle>
</booking>
<!--booking-->
<booking bdate ="2014-11-23">
    <customer>
        <name>Onder</name>
        <surname>Graf</surname>
    </customer>
    <address>
        <street>Mariahilferstrasse</street>
        <city>Wien</city>
        <country>Austria</country>
    </address>
    <vehicle>
        <brand>BMW</brand>
        <model>M6</model>
    </vehicle>
</booking>
<!--booking-->
<booking bdate ="2014-11-23">
    <customer>
        <name>Onder</name>
        <surname>Graf</surname>
    </customer>
    <address>
        <street>Mariahilferstrasse</street>
        <city>Wien</city>
        <country>Austria</country>
    </address>
    <vehicle>
        <brand>BMW</brand>
        <model>M6</model>
    </vehicle>
</booking>
</bookings>
  • 写回答

1条回答 默认 最新

  • dopuz8728 2015-01-05 15:46
    关注

    Your input XML is well-formed and the XSLT code is correct. I cannot reproduce your problem under PHP 5.4.30.

    I suspect you are saving the result in a file with an *.xml extension instead of *.html. If opened with a browser, it will report that no stylesheet is associated with this XML file. So, the solution is: change the file extension.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 sim800c模块 at指令及平台
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)
  • ¥15 Vue3地图和异步函数使用
  • ¥15 C++ yoloV5改写遇到的问题
  • ¥20 win11修改中文用户名路径
  • ¥15 win2012磁盘空间不足,c盘正常,d盘无法写入
  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥70 PlayWright在Java上连接CDP关联本地Chrome启动失败,貌似是Windows端口转发问题