Home > php教程 > php手册 > php 获取mysql信息

php 获取mysql信息

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 10:07:21
Original
1218 people have browsed it

mysql_get_server_info

定义和用法
该mysql_get_server_info ( )函数得到有关MySQL服务器。

这个函数返回MySQL服务器版本上的成功,或FALSE的失败。

语法

mysql_get_server_info(connection)
Copy after login
<p>参数说明<br>connection:</p><p>可选。指定MySQL连接。如果没有指定,最后连接开幕mysql_connect ( )或mysql_pconnect ( )的使用。</p><p> </p><p>来看看实例.</p><p> </p><pre class="brush:php;toolbar:false"><?php $con = mysql_connect("localhost", "peter", "abc123");
echo "MySQL server info: " . mysql_get_server_info($con);
?>
Copy after login

 

输出信息为mysql信息哦.

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template