예제 #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;
 }