当我尝试创建SimpleXMLElement
的新实例时,我一直收到此错误。
我使用在线工具手动检查了我的xml语法,甚至从php.net复制/粘贴了示例XML文件,但我仍然收到错误。
我的代码:
include 'example.php';
$namevalues= new SimpleXMLElement($xmlstr);
example.php:
<?php
$xmlstr = <<<XML
<?xml version='1.0' standalone='yes'?>
<movies>
<movie>
<title>PHP: Behind the Parser</title>
<characters>
<character>
<name>Ms. Coder</name>
<actor>Onlivia Actora</actor>
</character>
<character>
<name>Mr. Coder</name>
<actor>El ActÓr</actor>
</character>
</characters>
<plot>
So, this language. It's like, a programming language. Or is it a
scripting language? All is revealed in this thrilling horror spoof
of a documentary.
</plot>
<great-lines>
<line>PHP solves all my web problems</line>
</great-lines>
<rating type="thumbs">7</rating>
<rating type="stars">5</rating>
</movie>
</movies>
XML;
?>
错误:
致命错误:未捕获的异常'异常',消息'字符串可以 不被解析为XML' 第266行的C:\ AbyssRoot \ htdocs \ Forum \ Sources \ showhomework.php
答案 0 :(得分:1)
我通过确保找不到example.php来复制此消息。我认为这也是你的问题。
检查example.php是否在提供包含的目录中,或者将其放在同一目录中。
如果情况确实如此,你需要提高你的错误报告水平,我在异常之前看到了一个通知和2个警告 - 这些明确说明导致这个问题的原因,并且会节省你很多时间,努力和头发。