mirror of
https://github.com/php/php-src.git
synced 2026-03-26 01:02:25 +01:00
15 lines
204 B
PHP
15 lines
204 B
PHP
--TEST--
|
|
Using pg function with default link while no link open
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
pg_dbname();
|
|
} catch (Error $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
No PostgreSQL link opened yet
|