Home  >  Article  >  Backend Development  >  php Get mysql information_PHP tutorial

php Get mysql information_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:03:56952browse

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)
<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);
?>

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:
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