mirror of
https://github.com/php/php-src.git
synced 2024-12-15 21:05:51 +08:00
16 lines
223 B
PHP
16 lines
223 B
PHP
--TEST--
|
|
PostgreSQL pg_ping() functions
|
|
--SKIPIF--
|
|
<?php include("skipif.inc"); ?>
|
|
--FILE--
|
|
<?php
|
|
// optional functions
|
|
|
|
include('config.inc');
|
|
|
|
$db = pg_connect($conn_str);
|
|
var_dump(pg_ping($db));
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|