summaryrefslogtreecommitdiff
path: root/ext/pgsql/tests/20pg_get_pid.phpt
blob: 06cdfa86563261f0adf82d979cbd2cf586a03569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
PostgreSQL pg_get_pid() functions
--SKIPIF--
<?php include("skipif.inc"); ?>
--FILE--
<?php
// optional functions

include('config.inc');

$db = pg_connect($conn_str);
$pid = pg_get_pid($db);

is_integer($pid) ? print 'OK' : print 'NG';
?>
--EXPECT--
OK