«

PHP:MySQL函数mysql_get_server_info()的用法

时间:2024-3-1 20:47     作者:韩俊     分类: PHP


mysql_get_server_info

(PHP 4 >= 4.0.5, PHP 5)

mysql_get_server_info — 取得 MySQL 服务器信息

<h3>说明</h3>
 string <strong>mysql_get_server_info</strong>
  ([ resource <code>$link_identifier</code>
] )
<p>
 <strong>mysql_get_server_info()</strong> 返回
 <code>link_identifier</code>
 所使用的服务器版本。如果省略
 <code>link_identifier</code>,则使用上一个打开的连接。
</p>
<p>
  <p><strong>Example #1 <strong>mysql_get_server_info()</strong> 例子</strong></p>
<?php
    mysql_connect("localhost", "mysql_user", "mysql_password") or
        die("Could not connect: " . mysql_error());
    printf ("MySQL server version: %sn", mysql_get_server_info());
?>
  <p>
   以上例子将产生如下输出:
  </p>
MySQL server version: 4.0.1-alpha
</p>
<p>
 参见
 mysql_get_client_info(),mysql_get_host_info() 和
 mysql_get_proto_info()。
</p>

标签: php php教程

热门推荐