(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
pg_get_notify — Ping 數(shù)據(jù)庫(kù)連接
$connection
, int $result_type
= ?): array
pg_get_notify() 取得 SQL 命令
NOTIFY
發(fā)送的通告消息。要接收通告消息,必須發(fā)送 SQL 命令
LISTEN
。如果連接中有通告消息,則數(shù)組包含消息名并且返回后端的
PID。如果沒(méi)有消息則返回 false
。
參見(jiàn) pg_get_pid()。
示例 #1 PostgreSQL NOTIFY 消息
<?php
$conn = pg_pconnect("dbname=publisher");
if (!$conn) {
echo "An error occured.\n";
exit;
}
// Listen 'author_updated' message from other processes
pq_query($conn, 'LISTEN author_updated;');
$notify = pg_get_notify($conn);
if (!$notify)
print("No messages\n");
else
print_r($notify);
?>