我正在从数据库中获取 xml 数据作为字符串。我想将 < 替换为 < ; 在 xml 标签之间。例如:
<smallelement> a<b </smallelement>
被替换为
<smallelement> a < b </smallelement>
i want to replace < with <
如果我使用字符串替换功能
$content = str_replace("<","<",$content);
it replaces element tag <smallelement> also like < ;smallelement.
<smallelement> a<b </smallelement>
我如何使用正则表达式来替换 xml 标签中的内容或有其他方法来实现这一点?