PHP 日本研討會 2024

ibase_server_info

(PHP 5, PHP 7 < 7.4.0)

ibase_server_info請求關於資料庫伺服器的資訊

描述

ibase_server_info(資源 $service_handle, int $action): string

參數

service_handle

先前建立的資料庫伺服器連線。

action

有效的常數。

回傳值

根據上下文返回混合型別。

範例

範例 #1 ibase_service_attach() 範例

<?php
// 連線至遠端 Firebird 伺服器
if (($service = ibase_service_attach('10.1.1.254/3050', 'sysdba', 'masterkey')) != FALSE) {

// 成功連線。

// 輸出資訊
echo "伺服器版本: " . ibase_server_info($service, IBASE_SVC_SERVER_VERSION) . "\n";
echo
"伺服器實作: " . ibase_server_info($service, IBASE_SVC_IMPLEMENTATION) . "\n";
echo
"伺服器使用者: " . print_r(ibase_server_info($service, IBASE_SVC_GET_USERS), true) . "\n";
echo
"伺服器目錄: " . ibase_server_info($service, IBASE_SVC_GET_ENV) . "\n";
echo
"伺服器鎖定路徑: " . ibase_server_info($service, IBASE_SVC_GET_ENV_LOCK) . "\n";
echo
"伺服器 lib 路徑: " . ibase_server_info($service, IBASE_SVC_GET_ENV_MSG) . "\n";
echo
"使用者資料庫路徑: " . ibase_server_info($service, IBASE_SVC_USER_DBPATH) . "\n";
echo
"已建立的連線: " . print_r(ibase_server_info($service, IBASE_SVC_SVR_DB_INFO),true) . "\n";

// 從伺服器分離 (中斷連線)
ibase_service_detach($service);

}
else {
// 輸出錯誤訊息
$conn_error = ibase_errmsg();
die(
$conn_error);
}
?>

以上範例將輸出

Server version: LI-V3.0.4.33054 Firebird 3.0
Server implementation: Firebird/Linux/AMD/Intel/x64
Server users: Array
(
    [0] => Array
        (
            [user_name] => SYSDBA
            [first_name] => Sql
            [middle_name] => Server
            [last_name] => Administrator
            [user_id] => 0
            [group_id] => 0
        )

)

Server directory: /etc/firebird/
Server lock path: /tmp/firebird/
Server lib path: /usr/lib64/firebird/lib/
Path of user db: /var/lib/firebird/secdb/security3.fdb
Established connections: Array
(
    [attachments] => 3
    [databases] => 2
    [0] => /srv/firebird/poss.fdb
    [1] => /srv/firebird/employees.fdb
)

新增註解

使用者貢獻的註解

此頁面沒有使用者貢獻的註解。
To Top