我有一个简单的 php 库https://github.com/MonsterGfx/PHP-MPD-Client
我的 symfony2 可以正常工作,但直到 mpd 服务器离线。我想检查 mpd 状态 -
static function checkSource(\MDS\SiteBundle\Entity\Source $source)
{
try {
MPD::connect($source->getMpdpassword(), $source->getMpdhost(), $source->getMpdport());
} catch (MPDConnectionFailedException $e) {
return false;
}
$ping = MPD::send("ping");
if ($ping['status'] == 'OK') {
return true;
} else {
return false;
}
}
问题是当服务器离线时,我会被抛出
Warning: fsockopen(): unable to connect to planeset.ru:6600 (Connection refused) 500 Internal Server Error - ContextErrorException
但我必须抓住错误。我在库中看到代码
if(!static::$fp)
{
// no connection
throw new MPDConnectionFailedException("$errstr ($errno)");
}
为什么我无法捕获错误并出现 500 错误?我做错了什么?