在线文档教程
PHP

pg_get_pid

pg_get_pid

(PHP 4 >= 4.3.0, PHP 5, PHP 7)

pg_get_pid - 获取后端的进程ID

描述

int pg_get_pid ( resource $connection )

pg_get_pid()获取后端(数据库服务器进程)的PID。PID用于确定是否从另一个进程发送了通过pg_get_notify()收到的NOTIFY消息。

参数

connection

PostgreSQL数据库连接资源。

返回值

后端数据库进程ID。

示例

示例#1 PostgreSQL后端PID

<?php  $conn = pg_pconnect("dbname=publisher" if (!$conn) {   echo "An error occurred.\n";   exit; } // Backend process PID. Use PID with pg_get_notify() $pid = pg_get_pid($conn ?>

扩展内容

  • pg_get_notify() - 获取SQL NOTIFY消息

← pg_get_notify

pg_get_result →