【发布时间】:2018-08-29 13:48:07
【问题描述】:
我想在保存之前将 xml 节点(即<name>B07BZFZV8D</name>)添加到 XML 变量中。
我想在“Self”元素中添加“name”节点。
#Previously i use to save it directly like this,
$Response #this is the respnse from api
$dom = new DOMDocument;
$dom->preserveWhiteSpace = FALSE;
$dom->loadXML($Response);
##saving in file
$myfile = file_put_contents('data.xml', $Response.PHP_EOL , FILE_APPEND | LOCK_EX);
【问题讨论】:
标签: php xml xml-parsing simplexml