コード例 #1
0
ファイル: Rotas.php プロジェクト: wujingke/zjs
 private function toBuildXML($root = 'RequestElectronicInfo')
 {
     $xml = XML::build($this->attributes, $root);
     $this->xml = $xml;
 }
コード例 #2
0
ファイル: Order.php プロジェクト: leoxml/zjs
 private function toBuildXML($root = 'RequestOrder')
 {
     $xml = '<?xml version="1.0" encoding="utf-8" ?>';
     $xml .= XML::build($this->attributes, $root);
     $this->xml = $xml;
 }