本文介绍了使用simpleXML编辑XML的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用simpleXML在xml文件中编辑值?
How can I edit the value's in a xml file using simpleXML ?
我知道如何创建文件,但不知道如何编辑现有文件中的值?
I know how to create the file, but not how to edit the value in an existing file ?
推荐答案
确定可以使用 SimpleXML :
$input = <<<END
<?xml version='1.0' standalone='yes'?>
<documents>
<document>
<name>spec.doc</name>
</document>
</documents>
END;
$xml = new SimpleXMLElement($input);
$xml->document[0]->name = 'spec.pdf';
$output = $xml->asXML();
看看示例.
这篇关于使用simpleXML编辑XML的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!