1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/pgsql/tests/pg_get_pid.inc
2002-10-18 07:52:09 +00:00

13 lines
156 B
PHP

<?php
// optional functions
include('config.inc');
$db = pg_connect($conn_str);
$pid = pg_get_pid($db);
is_integer($pid) ? print 'OK' : print 'NG';
?>