PostgreSQL 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

pg_get_pid

(PHP 4 >= 4.3.0, PHP 5)

pg_get_pidPing 数据库连接

说明

int pg_get_pid ( resource $connection )

pg_get_pid() 取得后端(数据库服务器进程)的 PID。PID 用来检查其它进程是否发送了 NOTIFY 消息。

Example #1 PostgreSQL 后端 PID

<?php 
$conn 
pg_pconnect("dbname=publisher");
if (!
$conn) {
    echo 
"An error occured.\n";
    exit;
}

// Backend process PID. Use PID with pg_get_notify()
$pid pg_get_pid($conn);
?>

参见 pg_get_notify()


PostgreSQL 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程