我相信文档已经过时(实际上对于 5.3 版,我想您使用的是 6.*)
他们说发送请求将返回一个 Guzzle\Http\Message\Response 对象。在这个版本的 Guzzle 中,您将获得GuzzleHttp\Psr7\Response,而不是实现xml()
方法。
您可以在https://github.com/guzzle/guzzle/blob/5.3/src/Message/Response.php上查看旧版本并使用该方法。例如。创建这个:
public function xml(Request $request, array $config = [])
{
$disableEntities = libxml_disable_entity_loader(true);
$internalErrors = libxml_use_internal_errors(true);
try {
// Allow XML to be retrieved even if there is no response body
$xml = new \SimpleXMLElement(
(string) $request->getBody() ?: '<root />',
isset($config['libxml_options']) ? $config['libxml_options'] : LIBXML_NONET,
false,
isset($config['ns']) ? $config['ns'] : '',
isset($config['ns_is_prefix']) ? $config['ns_is_prefix'] : false
);
libxml_disable_entity_loader($disableEntities);
libxml_use_internal_errors($internalErrors);
} catch (\Exception $e) {
libxml_disable_entity_loader($disableEntities);
libxml_use_internal_errors($internalErrors);
throw new YourXmlParseException(
'Unable to parse response body into XML: ' . $e->getMessage(),
$request,
$e,
(libxml_get_last_error()) ?: null
);
}
return $xml;
}