- MySQLi 教程
- MySQLi - 主頁
- MySQLi - 簡介
- MySQLi - PHP 語法
- MySQLi - 連線
- MySQLi - 建立資料庫
- MySQLi - 刪除資料庫
- MySQLi - 選擇資料庫
- MySQLi - 建立表
- MySQLi - 刪除表
- MySQLi - 插入查詢
- MySQLi - 選擇查詢
- MySQLi - WHERE 子句
- MySQLi - 更新查詢
- MySQLi - 刪除查詢
- MySQLi - LIKE 子句
- MySQLi - 排序結果
- MySQLi - 使用 JOIN
- MySQLi - 處理 NULL 值
- 獲取和使用 MySQLi 元資料
- MySQL
- MySQL - 安裝
- MySQL - 管理
- MySQL - 資料型別
- MySQL - 正則表示式
- MySQL - 事務
- MySQL - ALTER 命令
- MySQL - 索引
- MySQL - 臨時表
- MySQL - 克隆表
- MySQL - 使用序列
- MySQL - 處理重複項
- MySQLi 有用資源
- MySQLi - 有用的函式
- MySQLi - 快速指南
- MySQLi - 有用資源
- MySQLi - 討論
MySQLi - 獲取客戶端統計資訊
語法
array mysqli_get_client_stats ( void )
定義和用途
它返回每個程序的客戶端統計資訊。
示例
嘗試執行以下示例 -
<?php
$servername = "localhost:3306";
$username = "root";
$password = "";
$dbname = "TUTORIALS";
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
die('Connect Error (' . mysqli_connect_errno() . ') '. mysqli_connect_error());
exit();
}
if (!mysqli_query($conn, "SET a = 1")) {
printf("Errorcode: %d\n", mysqli_error($conn));
}
echo 'Success... ' . mysqli_get_host_info($conn) . "\n";
print_r(mysqli_get_client_stats());
?>
以上程式碼的示例輸出應如下所示 -
Errorcode: 0 Success... localhost:3306 via TCP/IP Array ( [bytes_sent] => 1840 [bytes_received] => 2802 [packets_sent] => 106 [packets_received] => 96 [protocol_overhead_in] => 384 [protocol_overhead_out] => 424 [bytes_received_ok_packet] => 0 [bytes_received_eof_packet] => 0 [bytes_received_rset_header_packet] => 108 [bytes_received_rset_field_meta_packet] => 0 [bytes_received_rset_row_packet] => 482 [bytes_received_prepare_response_packet] => 828 [bytes_received_change_user_packet] => 210 [packets_sent_command] => 42 [packets_received_ok] => 0 [packets_received_eof] => 0 [packets_received_rset_header] => 12 [packets_received_rset_field_meta] => 0 [packets_received_rset_row] => 26 [packets_received_prepare_response] => 12 [packets_received_change_user] => 24 [result_set_queries] => 6 [non_result_set_queries] => 12 [no_index_used] => 6 [bad_index_used] => 0 [slow_queries] => 0 [buffered_sets] => 6
mysqli_useful_functions.htm
廣告