Home > Backend Development > PHP Tutorial > php Get mysql information_PHP tutorial

php Get mysql information_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-13 17:03:56
Original
1054 people have browsed it

mysql_get_server_info

Definition and usage
The mysql_get_server_info() function gets information about the MySQL server.

This function returns success on MySQL server versions, or FALSE on failure.

Grammar

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

The output information is mysql information.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/630890.htmlTechArticlemysql_get_server_info Definition and Usage The mysql_get_server_info () function gets information about the MySQL server. This function returns success on MySQL server versions, or FALSE on failure. Language...
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template