pg_connect
nie zgłasza wyjątku, więc musisz przetłumaczyć na wyjątek jak poniżej.
function exception_error_handler($errno, $errstr, $errfile, $errline ) {
throw new ErrorException($errstr, $errno, 0, $errfile, $errline);
}
set_error_handler("exception_error_handler");
try {
[email protected]_connect("host=dbhost user=dbuser dbname=db password=dbpass");
} Catch (Exception $e) {
Echo $e->getMessage();
}
Proszę zapoznać się z tymi szczegółami
http://php.net/manual/en/language.exceptions.php