You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
223 B

23 years ago
  1. --TEST--
  2. PostgreSQL pg_ping() functions
  3. --SKIPIF--
  4. <?php include("skipif.inc"); ?>
  5. --FILE--
  6. <?php
  7. // optional functions
  8. include('config.inc');
  9. $db = pg_connect($conn_str);
  10. var_dump(pg_ping($db));
  11. ?>
  12. --EXPECT--
  13. bool(true)