pg_options

Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Get the options associated with the connection
<?php pg_options(?PgSql\Connection $connection = null): string
<?php         $a['host'] = pg_host($link);

        $a['port'] = pg_port($link);

        $a['dbname'] = pg_dbname($link);

        $a['options'] = pg_options($link);

        $a['version'] = pg_version($link);



        foreach (self::PARAM_CODES as $v) {