pg_options

(PHP 4, PHP 5, PHP 7, PHP 8)

pg_options接続に関連するオプションを取得する

説明

pg_options(?PgSql\Connection $connection = null): string

pg_options() は、指定した connection インスタンスの オプションを保持する文字列を返します。

パラメータ

connection

PgSql\Connection クラスのインスタンス。 connectionnull, の場合、デフォルトの接続を使います。 デフォルトの接続とは、pg_connect() または pg_pconnect() によって確立された直近の接続です。

警告

PHP 8.1.0 以降では、デフォルトの接続を使うことは推奨されなくなりました。

戻り値

connection のオプションを文字列で返します。

変更履歴

バージョン 説明
8.1.0 connection は、PgSql\Connection クラスのインスタンスを期待するようになりました。 これより前のバージョンでは、リソース を期待していました。
8.0.0 connection は、nullable になりました。

例1 pg_options() の例

<?php
$pgsql_conn
= pg_connect("dbname=mark host=localhost");
echo
pg_options($pgsql_conn);
?>

参考

add a note add a note

User Contributed Notes 1 note

up
0
Robert Treat <xzilla at sourceforge>
19 years ago
Apparently this function does not return the database name given in the connection string.  I tried this on apache 2.x/php4.3.x/pg7.4.x and apache 1.3.x/php5.x/pg8rc1 and saw this behavior on both setups.
To Top