本文介绍了如何删除 XML 字符串中的元素?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何删除这个 XML 字符串中的 元素?

How can the <title> element be deleted inside this XML string?

$input=
'<items>dfd jdh flkdjf
<title>My Test Title
</title>....
<store>my store 1</store>
</items>.....';

$output=
    '<items>dfd jdh flkdjf
        ....
    <store>my store 1</store>
    </items>.....';

谢谢

推荐答案

Simplexml

$str = '<items>1<title>lalala</title><others>...</others></items>';
$xml = simplexml_load_string($str);
unset($xml->children()->title);
$output = str_replace("<?xml version=\"1.0\"?>\n", '', $xml->asXml());

这篇关于如何删除 XML 字符串中的元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 23:13