コード例 #1
0
 public function GetBodyXml()
 {
     if (is_null($this->xmlBody)) {
         $this->xmlBody = CDavXmlDocument::LoadFromString($this->draftBody);
     }
     return $this->xmlBody;
 }
コード例 #2
0
ファイル: request.php プロジェクト: mrdeadmouse/u136006
 public function GetXmlDocument()
 {
     if ($this->xmlDocument == null) {
         $rawPost = $this->GetRequestBody();
         $this->xmlDocument = CDavXmlDocument::LoadFromString($rawPost);
     }
     return $this->xmlDocument;
 }