查詢

fbird_close()函式—用法及示例

「 關閉一個已經開啟的 Firebird/InterBase 資料庫連線 」


函式名稱:fbird_close()

適用版本:PHP 4, PHP 5, PHP 7

函式描述:fbird_close() 函式用於關閉一個已經開啟的 Firebird/InterBase 資料庫連線。

語法:bool fbird_close ( resource $link_identifier = ? )

引數:

  • link_identifier(可選):Firebird/InterBase 連線識別符號。如果未提供該引數,則預設使用上一個由 fbird_connect() 開啟的連線。

返回值:如果成功關閉連線,則返回 true,否則返回 false。

示例:

  1. 關閉預設連線:
$link = fbird_connect('localhost:/path/to/database.fdb', 'username', 'password');
// 執行資料庫操作
fbird_close();
  1. 關閉指定連線:
$link1 = fbird_connect('localhost:/path/to/database1.fdb', 'username', 'password');
$link2 = fbird_connect('localhost:/path/to/database2.fdb', 'username', 'password');
// 執行資料庫操作
fbird_close($link1);
// 繼續執行其他資料庫操作
fbird_close($link2);

注意事項:

  • 如果未指定連線識別符號,則會關閉上一個由 fbird_connect() 開啟的連線。
  • 關閉連線後,與該連線關聯的結果集和語句控制程式碼將不再可用。
  • 關閉連線後,如果需要重新連線資料庫,需要再次呼叫 fbird_connect() 函式。
  • 在指令碼執行結束時,所有開啟的連線都會自動關閉,因此通常不需要顯式呼叫 fbird_close() 函式。

更多資訊和示例,請參考 PHP 官方檔案:https://www.php.net/manual/en/function.ibase-close.php

補充糾錯
上一個函式: fbird_blob_open()函式
下一個函式: fbird_commit()函式
熱門PHP函式
分享連結