PHP是怎么处理异常的?像下面这样的代码,如何得知是执行成功了还是失败了?
public function get_user($ch, $apikey) {
\Think\Log::record('into get_user...');
curl_setopt($ch, CURLOPT_URL, 'https://sms.xxx.com/v2/user/get.json');
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array('apikey' => $apikey)));
$response = curl_exec($ch);
\Think\Log::record('$response : '.$response);
if (false === $response) {
die(curl_error);
}
return $response;
}
自己运行调试吧,不解释了。
抛出异常 throw new Exception()
可能触发异常的代码 try{...}
捕获异常 catch(Exception $e){}
补充:
补充 @incNick 的答案,PHP 7 版本,异常 多了异常类 Error ,跟 Exception 是平级关系
可以参考
1、http://php.net/manual/zh/migration70.incompatible.php
2、http://php.net/manual/zh/language.errors.php7.php
在一个项目里面, 你很难保证curl发出的http请求一定是正确并且在超时范围内返回的..反而是经常出问题的.
所以为了项目后面的代码能正确处理curl遇到的错误, 我认为抛出异常是最好的方式.
PHP 也有try catch throw吧