$xmlStr = file_get_contents('/home/maplist1.xml');
$xml = simplexml_load_string($xmlStr);
$url = $xml->addChild("url");
$url->addChild("loc", "http://domain.com/link33333.html");
$url->addChild("lastmod", "2020-11-07");
$newXMLStr = $xml->asXML();
file_put_contents('/home/maplist1.xml',$newXMLStr);