我正在阅读一个有时很挑剔的网址并抛出Uncaught exception Exception: SSL read: error:00000000:lib(0):func(0):reason(0), errno 10054
我尝试过这样做:
try {
$body = Unirest\Request::get($url);
} catch (Exception $e) {
print $e;
return;
}
但是,错误仍在停止我的任务。我想知道我是否缺少只执行catch函数而不是一起停止它。