1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/ext/pgsql/tests/07optional.phpt
2003-05-31 12:59:20 +00:00

20 lines
270 B
PHP

--TEST--
PostgreSQL optional functions
--SKIPIF--
<?php include("skipif.inc"); ?>
--FILE--
<?php
// optional functions
include('config.inc');
$db = pg_connect($conn_str);
$enc = pg_client_encoding($db);
pg_set_client_encoding($db, $enc);
echo "OK";
?>
--EXPECT--
OK