我是PHP的新手:)
我正在尝试加载包含未转义字符的XML。我想使用REGEX。任何人都可以告诉我,如何正确地做到这一点?
这是我的简单XML文件:
<?xml version="1.0" encoding="utf-8"?>
<test>
<url>http://example.com?T=2&P=1</url>
</test>
和我的代码:
$test = file_get_contents( __DIR__ . '/../test/test.xml' );
$objXml = simplexml_load_string( $test );
var_dump( $objXml );
我收到此错误:
"simplexml_load_string(): Entity: line 3: parser error : EntityRef: expecting ';'"
任何想法我怎么能得到它?
答案 0 :(得分:1)
尝试使用XML封装数据:
<?xml version="1.0" encoding="utf-8"?>
<test>
<url><![CDATA[http://example.com?T=2&P=1]]></url>
</test>
还要考虑@Rakesh Sharma注释使用simplexml_load_file()