PHP mysqli_get_client_stats() 函數(shù)
PHP mysqli_get_client_stats() 函數(shù)
實例
返回有關(guān)客戶端每個進(jìn)程的統(tǒng)計:
<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 檢測連接
if (mysqli_connect_errno($con))
{
echo "數(shù)據(jù)庫連接失敗: " . mysqli_connect_error();
}
print_r(mysqli_get_client_stats());
mysqli_close($con);
?>
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// 檢測連接
if (mysqli_connect_errno($con))
{
echo "數(shù)據(jù)庫連接失敗: " . mysqli_connect_error();
}
print_r(mysqli_get_client_stats());
mysqli_close($con);
?>
定義和用法
mysqli_get_client_stats() 函數(shù)返回有關(guān)客戶端每個進(jìn)程的統(tǒng)計。
語法
mysqli_get_client_stats();
技術(shù)細(xì)節(jié)
返回值: | 如果成功則返回一個帶有客戶端統(tǒng)計的數(shù)組,如果失敗則返回 FALSE。 |
---|---|
PHP 版本: | 5.3+ |

相關(guān)文章
- PHP 數(shù)組排序
- PHP 多維數(shù)組
- PHP Session
- PHP JSON
- PHP array_combine() 函數(shù)
- PHP array_diff() 函數(shù)
- PHP array_diff_key() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_key_last() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP ksort() 函數(shù)
- PHP list() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Filter 函數(shù)