php-src/ext/pgsql/tests/19pg_ping.phpt

16 lines
223 B
Plaintext
Raw Normal View History

2002-10-18 07:52:09 +00:00
--TEST--
PostgreSQL pg_ping() functions
--SKIPIF--
<?php include("skipif.inc"); ?>
--FILE--
<?php
2003-05-20 00:14:46 +00:00
// optional functions
include('config.inc');
$db = pg_connect($conn_str);
var_dump(pg_ping($db));
2002-10-18 07:52:09 +00:00
?>
--EXPECT--
bool(true)