(PHP 4 >= 4.3.0, PHP 5, PHP 7)
pg_get_notify — Ping ���ݿ�����
$connection
[, int $result_type
] ) : array
pg_get_notify() ȡ�� SQL ����
NOTIFY
���͵�ͨ����Ϣ��Ҫ����ͨ����Ϣ�����뷢�� SQL ����
LISTEN�������������ͨ����Ϣ�������������Ϣ�����ҷ��غ�˵�
PID�����û����Ϣ�� FALSE
��
�μ� pg_get_pid()��
Example #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);
?>