pg_connect
例外をスローしないため、以下のように例外に変換する必要があります。
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();
}
詳細はこちらをご覧ください
http://php.net/manual/en/language.exceptions.php