php Get mysql information_PHP tutorial

WBOY
Release: 2016-07-13 17:03:56
Original
963 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...
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!