Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16366 программистов и 1794 робота. Сейчас ищут 1993 программиста ...
PDO::pgsqlGetNotify - Get asynchronous notification
Вернуться к: PostgreSQL (PDO)
PDO::pgsqlGetNotify
(PHP 5 >= 5.6.0, PHP 7)
PDO::pgsqlGetNotify — Get asynchronous notification
Описание
public array PDO::pgsqlGetNotify
([ int
$result_type
= PDO::FETCH_USE_DEFAULT
[, int $ms_timeout
= 0
]] )Returns a result set representing a pending asynchronous notification.
Список параметров
-
result_type
-
The format the result set should be returned as, represented as a
PDO::FETCH_*
constant. -
ms_timeout
-
The length of time to wait for a response, in milliseconds.
Возвращаемые значения
If one or more notifications is pending, returns a single row, with fields
message and pid, otherwise returns
FALSE
.
Вернуться к: PostgreSQL (PDO)