class jsonToXml {
public static function convert($data, DOMDocument $dom = null, DOMElement $xml = null) {
if(!$dom) {
$dom = new DOMDocument('1.0', 'UTF-8');
$dom->formatOutput = true;
}
if(!$xml) {
$xml = $dom->createElement('xml');
$xml->setAttribute('root', 'http...
阅读:977
评论:1