dongyanzhui0524 2014-06-15 06:36
浏览 52
已采纳

无法通过XML文件解析器读取任意文件

So I've wanted to create a very basic XML file parser that imports XML styles.

<?php
//error_reporting(0);

$XSLT = new XSLTProcessor();
$XML = new DOMDocument();
$XSL = new DOMDocument();

$XSL->load($_GET['file']);
$XSLT->importStyleSheet($XSL);

print $XSLT->transformToXML($XML);

Now I need to read an arbitrary file like this:

http://localhost/parser.php?file=style.xml

Given that I find it hard to troubleshoot as to why I cannot seem to read a .txt file on the local filesystem in the same directory.

<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
    <xsl:template match='/'>
        <xsl:copy-of select="document('message.txt')"/>
    </xsl:template>
</xsl:stylesheet>
  • 写回答

1条回答 默认 最新

  • dragonfly9527 2014-06-15 06:40
    关注

    The document() function requires well-formed XML. You can't use it to read a plain text document. Try using it to read an XML document in the same directory. It should work:

    <xsl:copy-of select="document('message.xml')"/> <!-- message.xml is well formed XML -->
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部