Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16439 программистов и 1786 роботов. Сейчас ищут 1995 программистов ...
pg_connect_poll - Ошибка
Вернуться к: PostgreSQL
pg_connect_poll
(PHP 5 >= 5.6.0, PHP 7)
pg_connect_poll — Poll the status of an in-progress asynchronous PostgreSQL connection attempt.
Описание
int pg_connect_poll
([ resource
$connection
] )
pg_connect_poll() polls the status of a PostgreSQL
connection created by calling pg_connect() with the
PGSQL_CONNECT_ASYNC
option.
Список параметров
-
connection
-
PostgreSQL database connection resource.
Возвращаемые значения
Returns PGSQL_POLLING_FAILED
,
PGSQL_POLLING_READING
,
PGSQL_POLLING_WRITING
,
PGSQL_POLLING_OK
, or
PGSQL_POLLING_ACTIVE
.
Вернуться к: PostgreSQL