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