mirror of
https://github.com/danog/ext-pq.git
synced 2024-12-02 17:28:35 +01:00
24 lines
280 B
Plaintext
24 lines
280 B
Plaintext
|
--TEST--
|
||
|
connection info
|
||
|
--SKIPIF--
|
||
|
<?php include "_skipif.inc"; ?>
|
||
|
--FILE--
|
||
|
<?php
|
||
|
echo "Test\n";
|
||
|
include "_setup.inc";
|
||
|
$c = new pq\Connection(PQ_DSN);
|
||
|
printf("%s%s%s%s%s%s\n",
|
||
|
$c->db,
|
||
|
$c->user,
|
||
|
$c->pass,
|
||
|
$c->host,
|
||
|
$c->port,
|
||
|
$c->options
|
||
|
);
|
||
|
?>
|
||
|
DONE
|
||
|
--EXPECTF--
|
||
|
Test
|
||
|
%s
|
||
|
DONE
|