当前位置:Gxlcms > PHP教程 > mysql_get_server_info()函数

mysql_get_server_info()函数

时间:2021-07-01 10:21:17 帮助过:3人阅读

mysql_get_server_info()函数是php内置系统函数。

mysql_get_server_info() 函数返回 MySQL 服务器的信息。

如果成功,则返回 MySQL 服务器的版本号,如果失败,则返回 false。
语法:mysql_get_server_info(connection)

参数:connection 可选。规定 MySQL 连接。如果未规定,则使用上一个连接。

  1. $con = mysql_connect("localhost", "hello", "321");
  2. echo "MySQL server info: " . mysql_get_server_info($con);
  3. ?>
mysql

人气教程排行