pg_last_notice
(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)
pg_last_notice — 返回 PostgreSQL 伺服器最新一條公告資訊
說明
pg_last_notice(resource
$connection
): string
pg_last_notice()
返回由 connection
指定的 PostgreSQL 伺服器最新的一條公告資訊。PostgreSQL
伺服器在某些情況下會發送公告資訊,例如在表裡建立 SERIAL
列。
有了 pg_last_notice(),只要檢查公告是否和該事務有關,就可以避擴音交無用的查詢。
可以通過在 php.ini 中把
pgsql.ignore_notice
置為 1 來使公告資訊追蹤成為可選項。
可以通過在 php.ini 中把
pgsql.log_notice
置為 0 來使公告資訊日誌成為可選項。
除非 pgsql.ignore_notice
為 0,否則公告資訊不能被日誌記錄。
參數
-
connection
-
PostgreSQL database connection resource.
返回值
A string containing the last notice on the
given connection
, or false
on error.
更新日誌
版本 | 說明 |
---|---|
4.3.0 | 本函式在 PHP 4.3.0 中完全實現。低於 PHP 4.3.0 的版本中都忽略了數據庫連線參數。 |
4.3.0 |
The pgsql.ignore_notice and
pgsql.log_notice php.ini directives were added.
|
4.0.6 | PHP 4.0.6 本身在公告資訊處理上有問題。即使不使用 pg_last_notice() 函式,也不推薦在 PHP 4.0.6 中使用 PostgreSQL 模組。 |
範例
示例 #1 pg_last_notice() example
<?php
$pgsql_conn = pg_connect("dbname=mark host=localhost");
$res = pg_query("CREATE TABLE test (id SERIAL)");
$notice = pg_last_notice($pgsql_conn);
echo $notice;
?>
以上例程會輸出:
CREATE TABLE will create implicit sequence "test_id_seq" for "serial" column "test.id"