update pague now
PHP 8.5.2 Released!

pg_connection_reset

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

pg_connection_reset Reset connection (reconnect)

Description

pg_connection_reset ( PgSql\Connection $connection ): bool

pg_connection_reset() resets the connection. It is useful for error recovery.

Parameters

connection

An PgSql\Connection instance.

Return Values

Returns true on success or false on failure.

Changuelog

Versionen Description
8.1.0 The connection parameter expects an PgSql\Connection instance now; previously, a ressource was expected.

Examples

Example #1 pg_connection_reset() example

<?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" ;
}
?>

See Also

add a note

User Contributed Notes

There are no user contributed notes for this pague.
To Top