欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

XML无法解析&如何解决

程序员文章站 2023-12-23 09:06:28
...
XML无法解析&,怎么解决啊
PHP code
$str1 = "http://user.qzone.qq.com/1340477530#!app=2&pos=1300412602";$xml = ''."\r\n";$xml .= ''."\r\n";$xml .= "\t".''.$str1.''."\r\n";$xml .= ''."\r\n";$sxe = new SimpleXMLElement($xml);$sxe->asXML('test.xml');

运行后发现如下错误,
HTML code
arning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: Entity: line 3: parser error : EntityRef: expecting ';' in C:\wamp\www\test\a.php on line 18Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: http://user.qzone.qq.com/1340477530#!app=2\&pos=1300412602in C:\wamp\www\test\a.php on line 18


将$str1中的 "&" 去掉后就正常了,这是为什么啊。。有什么解决办法吗?谢谢~~


------解决方案--------------------
$xml .= "\t".''.htmlentities($str1).''."\r\n";
XML无法解析&如何解决

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


上一篇:

下一篇: