コード例 #1
0
ファイル: xml.php プロジェクト: michalkoczwara/WebGoatPHP
 function Format($Data, $Request)
 {
     $XML = new XMLConvertor();
     $Result = $XML->array_to_xml($Data);
     $this->Headers = array("content-type" => "text/xml");
     return $Result;
 }
コード例 #2
0
ファイル: xml.php プロジェクト: michalkoczwara/WebGoatPHP
 function Format($Data)
 {
     $XML = new XMLConvertor();
     return $XML->xml_to_array($Data);
 }