略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: pg_ping

2024-05-02

pg_ping

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

pg_pingPing 数据库连接

说明

pg_ping(resource $connection): bool

pg_ping() ping 数据库连接,如果中断则尝试重新连接。如果连接在活动状态返回 true,否则返回 false

示例 #1 pg_ping()

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

if (!
pg_ping($conn))
    die(
"Connection is broken\n");
?>
参见 pg_connection_status()pg_connection_reset()
add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/function.pg-ping.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3