Esempio n. 1
0
File: Order.php Progetto: leoxml/zjs
 private function toBuildXML($root = 'RequestOrder')
 {
     $xml = '<?xml version="1.0" encoding="utf-8" ?>';
     $xml .= XML::build($this->attributes, $root);
     $this->xml = $xml;
 }
Esempio n. 2
0
 private function toBuildXML($root = 'RequestElectronicInfo')
 {
     $xml = XML::build($this->attributes, $root);
     $this->xml = $xml;
 }
Esempio n. 3
0
 private function toBuildXML($root = 'BatchQueryRequest')
 {
     $xml = XML::array2xml($this->attributes, $root);
     $this->xml = $xml;
 }