定义和用法
这个mysqli_stat()函数检索并返回当前服务器的信息/状态。此信息包括有关服务器的详细信息,例如线程数、打开的表数、正常运行时间等。
用法
mysqli_stat($con)
参数
Sr.No | 参数及说明 |
---|---|
1 |
con(Mandatory) 这是一个表示与 MySQL 服务器的连接的对象。 |
返回值
PHP mysqli_stat() 函数返回一个字符串值,表示当前 MySQL 服务器的状态。如果发生错误,此函数将返回布尔值 false。
PHP版本
这个函数最初是在 PHP 版本 5 中引入的,适用于所有后续版本。
示例
以下示例演示了 mysqli_stat() 函数的用法(程序风格) -
<?php
//Creating a connection
$con = mysqli_connect("localhost", "root", "password", "mydb");
//Status
$stat = mysqli_stat($con);
print("Status:".$stat);
//Closing the connection
mysqli_close($con);
?>
这将产生以下结果 -
Status:Uptime:130131 Threads:2 Questions:350 Slow queries:0 Opens:172 Flush tables:1 Open tables:145 Queries per second avg:0.002
示例
在面向对象风格中,这个函数的语法是 $con->stat();。以下是面向对象风格的此函数的示例 -
<?php
//Creating a connection
$con = new mysqli("localhost", "root", "password", "mydb");
//Status
$stat = $con->stat();
print("Status:".$stat);
//Closing the connection
$con -> close();
?>
这将产生以下结果 -
Status:Uptime:131057 Threads:2 Questions:354 Slow queries:0 Opens:172 Flush tables:1 Open tables:145 Queries per second avg:0.002
示例
<?php
$connection_mysql = mysqli_connect("localhost", "root", "password", "mydb");
if (mysqli_connect_errno($connection_mysql)){
echo "Failed to connect to MySQL:" . mysqli_connect_error();
}
echo "System status:". mysqli_stat($connection_mysql);
mysqli_close($connection_mysql);
?>
这将产生以下结果 -
System status:Uptime:131468 Threads:2 Questions:356 Slow queries:0 Opens:172 Flush tables:1 Open tables:145 Queries per second avg:0.002
相关用法
- PHP mysqli_stmt_affected_rows()用法及代码示例
- PHP mysqli_stmt_fetch()用法及代码示例
- PHP mysqli_stmt_data_seek()用法及代码示例
- PHP mysqli_stmt_free_result()用法及代码示例
- PHP mysqli_stmt_error()用法及代码示例
- PHP mysqli_stmt_field_count()用法及代码示例
- PHP mysqli_stmt_errno()用法及代码示例
- PHP mysqli_stmt_get_result()用法及代码示例
- PHP mysqli_stmt_init()用法及代码示例
- PHP mysqli_stmt_bind_result()用法及代码示例
- PHP mysqli_stmt_store_result()用法及代码示例
- PHP mysqli_stmt_reset()用法及代码示例
- PHP mysqli_stmt_attr_get()用法及代码示例
- PHP mysqli_stmt_param_count()用法及代码示例
- PHP mysqli_stmt_attr_set()用法及代码示例
- PHP mysqli_stmt_prepare()用法及代码示例
- PHP mysqli_stmt_sqlstate()用法及代码示例
- PHP mysqli_stmt_bind_param()用法及代码示例
- PHP mysqli_stmt_close()用法及代码示例
- PHP mysqli_stmt_num_rows()用法及代码示例
注:本文由纯净天空筛选整理自 PHP mysqli_stat() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。