MySQLi類
(PHP 5, PHP 7, PHP 8)
簡介
代表PHP和Mysql數據庫之間的一個連線。
類摘要
class mysqli
{
/* 屬性 */
int|string $affected_rows;
int $connect_errno;
int $errno;
array $error_list;
string $error;
int $field_count;
string $client_info;
int $client_version;
string $host_info;
string $protocol_version;
string $server_info;
int $server_version;
string $info;
string $sqlstate;
int $thread_id;
int $warning_count;
/* 方法 */
character_set_name(): string
close(): bool
commit(): bool
mysqli_connect_errno(): int
mysqli_connect_error(): ?string
public connect(
string
string
string
string
int
string
): void
string
$hostname
= ini_get("mysqli.default_host"),string
$username
= ini_get("mysqli.default_user"),string
$password
= ini_get("mysqli.default_pw"),string
$database
= "",int
$port
= ini_get("mysqli.default_port"),string
$socket
= ini_get("mysqli.default_socket")): void
dump_debug_info(): bool
get_client_info(): string
get_connection_stats(): bool
more_results(): bool
next_result(): bool
ping(): bool
real_connect(
string
string
string
string
int
string
int
): bool
string
$host
= ?,string
$username
= ?,string
$passwd
= ?,string
$dbname
= ?,int
$port
= ?,string
$socket
= ?,int
$flags
= ?): bool
rollback(): bool
stat(): string
mysqli_thread_safe(): bool
}目錄
- mysqli::$affected_rows — Gets the number of affected rows in a previous MySQL operation
- mysqli::autocommit — 打開或關閉本次數據庫連線的自動命令提交事務模式
- mysqli::begin_transaction — Starts a transaction
- mysqli::change_user — Changes the user of the specified database connection
- mysqli::character_set_name — 返回目前數據庫連線的預設字元編碼
- mysqli::close — 關閉先前打開的數據庫連線
- mysqli::commit — 提交一個事務
- mysqli::$connect_errno — Returns the error code from last connect call
- mysqli::$connect_error — Returns a description of the last connection error
- mysqli::__construct — Open a new connection to the MySQL server
- mysqli::debug — Performs debugging operations
- mysqli::dump_debug_info — 將除錯資訊輸出到日誌
- mysqli::errno — 返回最近函式呼叫的錯誤程式碼
- mysqli::$error_list — Returns a list of errors from the last command executed
- mysqli::$error — Returns a string description of the last error
- mysqli::$field_count — Returns the number of columns for the most recent query
- mysqli::get_charset — Returns a character set object
- mysqli::$client_info — 獲取 MySQL 客戶端資訊
- mysqli_get_client_version — 作為一個整數返回MySQL客戶端的版本
- mysqli::get_connection_stats — 返回客戶端連線的統計數據
- mysqli::$host_info — 返回一個表述使用的連線型別的字串
- mysqli::$protocol_version — 返回MySQL使用的協議版本號
- mysqli::$server_info — 返回MySQL伺服器的版本號
- mysqli::$server_version — 作為一個整數返回MySQL伺服器的版本
- mysqli::get_warnings — Get result of SHOW WARNINGS
- mysqli::$info — 返回最近執行的 SQL 語句的資訊
- mysqli::init — 初始化 MySQLi 並返回一個資源型別的值,這個值可以作為 mysqli_real_connect() 函式的傳入參數
- mysqli::$insert_id — 返回最後一條插入語句產生的自增 ID
- mysqli::kill — 讓伺服器殺掉一個 MySQL 執行緒
- mysqli::more_results — 檢查批量查詢中是否還有查詢結果
- mysqli::multi_query — 執行查詢
- mysqli::next_result — 為讀取 multi_query 執行之後的下一個結果集做準備
- mysqli::options — 設定選項
- mysqli::ping — ping 一個連線,或者如果連線處於斷開狀態,重新連線
- mysqli::poll — 輪詢連線
- mysqli::prepare — 準備執行一個 SQL 語句
- mysqli::query — 對數據庫執行一次查詢
- mysqli::real_connect — 建立一個 MySQL 伺服器連線
- mysqli::real_escape_string — 根據目前連線的字符集,對於 SQL 語句中的特殊字元進行轉義
- mysqli::real_query — 執行一個mysql查詢
- mysqli::reap_async_query — 獲取非同步查詢的結果
- mysqli::refresh — 重新整理
- mysqli::release_savepoint — 從目前事務的儲存點中移除一個命名儲存點
- mysqli::rollback — 回退目前事務
- mysqli::savepoint — 在目前事務中增加一個命名儲存點
- mysqli::select_db — 選擇用於數據庫查詢的預設數據庫
- mysqli::set_charset — 設定預設字元編碼
- mysqli::$sqlstate — 返回上一次 SQL 操作的 SQLSTATE 錯誤資訊
- mysqli::ssl_set — 使用 SSL 建立到數據庫之間的安全連線
- mysqli::stat — 獲取目前系統狀態資訊
- mysqli::stmt_init — 初始化一條語句並返回一個用於mysqli_stmt_prepare(呼叫)的對象
- mysqli::store_result — 轉移上一次查詢返回的結果集
- mysqli::$thread_id — 返回目前連線的執行緒 ID
- mysqli::thread_safe — 返回是否是執行緒安全的
- mysqli::use_result — Initiate a result set retrieval
- mysqli::$warning_count — Returns the number of warnings from the last query for the given link