我有一个 xml 文件,可通过用户输入链接的网页进行编辑。这看起来像
<links>
<link1 path="http://abc.def.com/abcd?id=2&ed=4" > </link1>
<links>
我通过 php 读取了这个 xml,然后添加了一个链接到这里的按钮。我目前正在做的是str_replace('&', '&',)
在 xml 字符串上使用 a ,然后str_replace('&', '&',)
在提取的路径上使用 a 。有没有更优雅的方法来做到这一点?