pg_connection_status
接続ステータスを取得する
説明
int pg_connection_status(PgSql\Connection $connection
)
パラメータ
-
connection
-
PgSql\Connection クラスのインスタンス。
戻り値
PGSQL_CONNECTION_OK
あるいは
PGSQL_CONNECTION_BAD
。
例
例1 pg_connection_status の例
<?php
$dbconn = pg_connect("dbname=publisher") or die("Could not connect");
$stat = pg_connection_status($dbconn);
if ($stat === PGSQL_CONNECTION_OK) {
echo 'Connection status ok';
} else {
echo 'Connection status bad';
}
?>