略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: pg_connection_reset

2024-04-30

pg_connection_reset

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

pg_connection_reset 重置连接(再次连接)

说明

pg_connection_reset(resource $connection): bool

pg_connection_reset() 重置一个连接,用于错误恢复。

参数

connection

PostgreSQL database connection resource.

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 pg_connection_reset() 例子

<?php
  $dbconn 
pg_connect("dbname=publisher") or die("Could not connect");
  
$dbconn2 pg_connection_reset($dbconn);
  if (
$dbconn2) {
      echo 
"reset successful\n";
  } else {
      echo 
"reset failed\n";
  }
?>

参见

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-connection-reset.php

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