我有这个代码
<?php
$url = "_configurations/right_sidebar_links.xml";
$xml = simplexml_load_file($url);
foreach($xml->links as $links)
{
echo "<li>";
echo "<a href='".$links->url."'>";
echo $links->name."</a></li>";
}
?>
从另一个文件加载 xml 链接,它适用于没有任何奇怪字符的链接,但是当你输入带有奇怪字符的长链接时,它会给出一个错误说
Warning: simplexml_load_file() [function.simplexml-load-file]: _configurations/right_sidebar_links.xml:17: parser error : EntityRef: expecting ';' in .../includes/loadLinks.php on line 8
任何帮助将非常感激。
这是链接的示例
谢谢!