«

PHP:MySQL函数mysql_list_tables()的用法

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


mysql_list_tables

(PHP 4, PHP 5)

mysql_list_tables — 列出 MySQL 数据库中的表

<h3>说明</h3>
 resource <strong>mysql_list_tables</strong>
  ( string <code>$database</code>
 [, resource <code>$link_identifier</code>
] )
<p>
 <strong>mysql_list_tables()</strong>
 接受一个数据库名并返回和
 mysql_query()
 函数很相似的一个结果指针。用
 mysql_tablename()
 函数来遍历此结果指针,或者任何使用结果表的函数,例如
 mysql_fetch_array()。
</p>
<p>
 <code>database</code>
 参数是需要被取得其中的的表名的数据库名。如果失败
 <strong>mysql_list_tables()</strong> 返回 <strong><code>FALSE</code></strong>。
</p>
<p>
 为向下兼容仍然可以使用本函数的别名
 <strong>mysql_listtables()</strong>,但反对这样做。
</p>
<p>
 <p><strong>Note</strong>:
   该函数已经被删除了,请不要再使用该函数。您可以用命令 SHOW TABLES FROM DATABASE 来实现该函数的功能。
 </p>
</p>
<p>
  <p><strong>Example #1 <strong>mysql_list_tables()</strong> 例子</strong></p>
<?php
    $dbname = 'mysql_dbname';

    if (!mysql_connect('mysql_host', 'mysql_user', 'mysql_password')) {
        print 'Could not connect to mysql';
        exit;
    }

    $result = mysql_list_tables($dbname);

    if (!$result) {
        print "DB Error, could not list tablesn";
        print 'MySQL Error: ' . mysql_error();
        exit;
    }

    while ($row = mysql_fetch_row($result)) {
        print "Table: $row[0]n";
    }

    mysql_free_result($result);
?>
</p>
<p>
参见 mysql_list_dbs() 和
mysql_tablename()。
</p>

标签: php php教程

热门推荐