我有一个 xml 文件,在其中替换 & ,&
然后将&
转换回 & 以插入数据库。我的脚本没有将 & 替换为&
.
function xml_entities($string) {
return strtr(
$string,
array(
"&" => "&",
)
);
}
$content=xml_entities(file_get_contents("http://www.site.com/feeds/xxxx/property.xml"));
file_put_contents("cleanme.xml",$content);
echo "File clean complete".'<br>';