pg_connection_status
PHP Manual
PHP Manual»PostgreSQL Функції»pg_connection_status

pg_connection_status

(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)

pg_connection_status Get connection status

Опис

function pg_connection_status(PgSql\Connection $connection): int

pg_connection_status() returns the status of the specified connection.

Параметри

connection

Примірник PgSql\Connection.

Значення, що повертаються

PGSQL_CONNECTION_OK or PGSQL_CONNECTION_BAD.

Журнал змін

Версія Опис
8.1.0 Тепер параметр connection має бути примірником PgSql\Connection. Раніше очікувався resource.

Приклади

Приклад #1 pg_connection_status() example

<?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';
  }    
?>

Прогляньте також

To Top