downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

pg_connection_status> <pg_connection_busy
[edit] Last updated: Fri, 17 May 2013

view this page in

pg_connection_reset

(PHP 4 >= 4.2.0, PHP 5)

pg_connection_reset 重置连接(再次连接)

说明

bool pg_connection_reset ( resource $connection )

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

参数

connection

PostgreSQL database connection resource.

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE

范例

Example #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 note add a note User Contributed Notes pg_connection_reset - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites