PHP新增、删除xml节点
假设有如下xml文件(/path/to/index.xml):
<?xml version="1.0" encoding="utf-8"?>
<sitemapindex>
<sitemap>
<loc>100.xml</loc>
<lastmod>2020-05-06</lastmod>
</sitemap>
<sitemap>
<loc>101.xml</loc>
<lastmod>2020-05-06</lastmod>
</sitemap>
<sitemap>
<loc>102.xml</loc>
<lastmod>2020-05-06</lastmod>
</sitemap>
</sitemapindex>
新增loc为103.xml的节点
使用SimpleXML
的addChild
方法:
$xml = simplexml_load_file("/path/to/index.xml");
$sitemap = $xml->addChild('sitemap');
$sitemap->addChild('loc', '103.xml');
$sitemap->addChild('lastmod', '2020-05-07');
echo $xml->asXML();