> 백엔드 개발 > PHP 튜토리얼 > XML无法解析&如何解决

XML无法解析&如何解决

WBOY
풀어 주다: 2016-06-13 13:33:58
원래의
1845명이 탐색했습니다.

XML无法解析&,怎么解决啊

PHP code

1

2

3

4

5

6

7

8

9

10

11

12

13

<!--

 

Code highlighting produced by Actipro CodeHighlighter (freeware)

http://www.CodeHighlighter.com/

 

-->

$str1 = "http://user.qzone.qq.com/1340477530#!app=2&pos=1300412602";

$xml = '<?xml version="1.0" encoding="utf-8"?>'."\r\n";

$xml .= '<user>'."\r\n";

$xml .= "\t".'<person_siteurl>'.$str1.'</person_siteurl>'."\r\n";

$xml .= '</user>'."\r\n";

$sxe = new SimpleXMLElement($xml);

$sxe->asXML('test.xml');

로그인 후 복사

运行后发现如下错误,
HTML code

1

2

3

4

5

6

7

8

9

10

<!--

 

Code highlighting produced by Actipro CodeHighlighter (freeware)

http://www.CodeHighlighter.com/

 

-->

arning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: Entity: line 3: parser error : EntityRef: expecting ';' in C:\wamp\www\test\a.php on line 18

Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: <person_siteurl>http://user.qzone.qq.com/1340477530#!app=2\&pos=1300412602in C:\wamp\www\test\a.php on line 18

 

</person_siteurl>

로그인 후 복사


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


------解决方案--------------------
$xml .= "\t".''.htmlentities($str1).''."\r\n";
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿