我是 PHP 的绝对初学者(我来自Java),我有以下与如何处理异常相关的问题
我正在使用 Guzzle 来执行对 REST 网络服务的调用,如下所示:
$client = new Client(); //GuzzleHttp\Client
$response = $client->get('http://localhost:8080/Extranet/login',
[
'auth' => [
$credentials['email'],
$credentials['password']
]
]);
$dettagliLogin = json_decode($response->getBody());
如果在响应中我的Web服务重新存在现有用户信息,我没有问题。
如果用户不存在,我的网络服务会返回如下内容:
[2017-01-30 11:24:44] local.INFO: INSERTED USER CREDENTIAL: pippo@google.com dddd
[2017-01-30 11:24:44] local.ERROR: exception 'GuzzleHttp\Exception\ClientException' with message 'Client error: `GET http://localhost:8080/Extranet/login` resulted in a `401 Unauthorized` response:
{"timestamp":1485775484609,"status":401,"error":"Unauthorized","message":"Bad credentials","path":"/Extranet/login"}
所以在我看来,在这种情况下,客户端会抛出 ClientException 。
我的疑问是:我可以将此 $ client-> get(...)置于类似Java 尝试捕获块的内容中,以便捕获ClientException 我可以处理它创建自定义响应吗?
TNX
答案 0 :(得分:5)
如果你想使用类似于试试阻止。
你可以使用Guzzle Exception,就像在这里说的那样:
http://docs.guzzlephp.org/en/latest/quickstart.html#exceptions http://docs.guzzlephp.org/en/latest/request-options.html#http-errors
我从上面的文档中提取了代码:
use GuzzleHttp\Psr7;
use GuzzleHttp\Exception\RequestException;
try {
$client->request('GET', 'http://localhost:8080/Extranet/login');
} catch (RequestException $e) {
echo Psr7\str($e->getRequest());
if ($e->hasResponse()) {
echo Psr7\str($e->getResponse());
}
}
您可以出于任何目的修改和处理异常。