| 
 | pg_get_notifyGets SQL NOTIFY message Description
   array pg_get_notify
    ( resource  $connection[, int$result_type] )pg_get_notify gets notifications generated by a NOTIFY SQL command. To receive notifications, the LISTEN SQL command must be issued. Parameters
 
 Return Values
   An array containing the NOTIFY message name and backend PID.
   As of PHP 5.4.0 and if supported by the server, the array also contains the server version and the payload.
   Otherwise if no NOTIFY is waiting, then  Examples
 Example #1 PostgreSQL NOTIFY message 
<?php See Also
 
 |