remove xml version tag when a xml is created in php

前端 未结 10 1866
星月不相逢
星月不相逢 2020-11-28 10:28

I\'m creating a xml using this

$customXML = new SimpleXMLElement(\'\');

after adding some attributes onto this, when

10条回答
  •  借酒劲吻你
    2020-11-28 11:09

    $customXML = new SimpleXMLElement('hello');
    $result = $customXML->xpath('//abc');
    $result = $result[0];
    var_dump($result->asXML());
    

提交回复
热议问题