rawResponse->body; if (empty($content)) { throw new OssException("body is null"); } $xml = simplexml_load_string($content); if (isset($xml->Bucket)) { $info = new BucketInfo(); $info->parseFromXmlNode($xml->Bucket); return $info; } else { throw new OssException("xml format exception"); } } }