예제 #1
0
파일: SmintErrorXML.php 프로젝트: EQ4/smafe
 public static function simpleErrorAsXML($code)
 {
     $xml = new SimpleXMLElement(SmintapiConfig::getXMLrootElement());
     $message = self::getErrorMessage($code);
     $error = $xml->addChild("error", $message);
     $error->addAttribute("code", $code);
     return $xml;
 }
예제 #2
0
파일: SmintXML.php 프로젝트: EQ4/smafe
 public static function simpleXMLElement()
 {
     return new SimpleXMLElement(SmintapiConfig::getXMLrootElement());
 }