(PHP 4 >= 4.2.0, PHP 5)
pg_connection_status — دریافت وضعیت اتصال
pg_connection_status() وضعیت connection مشخص را باز میگرداند.
منبع اتصال پایگاه داده PostgreSQL.
PGSQL_CONNECTION_OK or PGSQL_CONNECTION_BAD.
Example #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';
}
?>