W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
(PHP 5、PHP 7 < 7.4.0)
ibase_server_info — 請求有關(guān)數(shù)據(jù)庫服務(wù)器的信息
ibase_server_info(resource $service_handle, int $action): string
service_handle
先前創(chuàng)建的與數(shù)據(jù)庫服務(wù)器的連接。
action
一個(gè)有效的常量。
根據(jù)上下文返回混合類型。
示例 #1 ibase_service_attach() example
<?php
// Attach to the remote Firebird server
if (($service = ibase_service_attach('10.1.1.254/3050', 'sysdba', 'masterkey')) != FALSE) {
// Successfully attached.
// Output the info
echo "Server version: " . ibase_server_info($service, IBASE_SVC_SERVER_VERSION) . "\n";
echo "Server implementation: " . ibase_server_info($service, IBASE_SVC_IMPLEMENTATION) . "\n";
echo "Server users: " . print_r(ibase_server_info($service, IBASE_SVC_GET_USERS), true) . "\n";
echo "Server directory: " . ibase_server_info($service, IBASE_SVC_GET_ENV) . "\n";
echo "Server lock path: " . ibase_server_info($service, IBASE_SVC_GET_ENV_LOCK) . "\n";
echo "Server lib path: " . ibase_server_info($service, IBASE_SVC_GET_ENV_MSG) . "\n";
echo "Path of user db: " . ibase_server_info($service, IBASE_SVC_USER_DBPATH) . "\n";
echo "Established connections: " . print_r(ibase_server_info($service, IBASE_SVC_SVR_DB_INFO),true) . "\n";
// Detach from server (disconnect)
ibase_service_detach($service);
}
else {
// Output message on error
$conn_error = ibase_errmsg();
die($conn_error);
}
?>
以上示例會(huì)輸出:
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 )
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: