mysql_get_host_info
(PHP 4 >= 4.0.5, PHP 5)
mysql_get_host_info — 取得 MySQL 主机信息
<h3>说明</h3>
string <strong>mysql_get_host_info</strong>
([ resource <code>$link_identifier</code>
] )
<p>
<strong>mysql_get_host_info()</strong> 返回一个字符串说明了连接
<code>link_identifier</code>
所使用的连接方式,包括服务器的主机名。如果省略
<code>link_identifier</code>,则使用上一个打开的连接。
</p>
<p>
<p><strong>Example #1 <strong>mysql_get_host_info()</strong> 例子</strong></p>
<?php
mysql_connect("localhost", "mysql_user", "mysql_password") or
die("Could not connect: " . mysql_error());
printf ("MySQL host info: %sn", mysql_get_host_info());
?>
<p>
以上例子将产生如下输出:
</p>
MySQL host info: Localhost via UNIX socket
</p>
<p>
参见
mysql_get_client_info(),mysql_get_proto_info() 和
mysql_get_server_info()。
</p>