我一直在尝试在 Symfony 2.3 中为不同的 MSSQL Server 创建一个循环,但是如果某些服务器关闭或 MSSQL 服务关闭,应用程序不会产生异常并且它会破坏该功能。
这是主控制器:
function pruebaconAction()
{
$enlistaServers = new array (
10.10.10.1,
10.10.10.2,
10.10.10.3,
...
10.10.10.19,
10.10.10.20
);
foreach($enlistaServers as $datosServer)
{
$direccionIPParaConexion = $datosServer->getDireccionIp ();
$nombreLocalidad = $datosServer->getNombre();
register_shutdown_function(array($this, 'conectaSrv'), $direccionIPParaConexion, $nombreLocalidad);
}
return $this->render("GastoEnlaceBundle:Default:pruebacon.html.twig");
}
此函数创建连接:
function conectaSrv($direccionIpConexion, $nombreLocalidad)
{
$pruebaDBAL = new \Doctrine\DBAL\Configuration();
$parametrosConexion = array(
'dbname' => 'MyDB',
'user' => 'user',
'password' => 'password',
'host' => $direccionIpConexion,
'driver' => 'pdo_sqlsrv'
);
$conexionDBAL = DriverManager::getConnection($parametrosConexion, $pruebaDBAL);
if($conexionDBAL->connect())
echo "Success<br />";
else
throw new Exception("Something is wrong :(<br />");
echo "=======================================================================<br />";
}
我总是得到相同的结果,对于所有在线服务器,连接成功,但如果某些服务器离线,则该函数永远不会发送异常并且它会中断循环。
我希望有人可以帮助我或给我建议,非常感谢。