«

PHP:MySQL函数mysql_tablename()的用法

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


mysql_tablename

(PHP 4, PHP 5)

mysql_tablename — 取得表名

<h3>说明</h3>
 string <strong>mysql_tablename</strong>
  ( resource <code>$result</code>
 , int <code>$i</code>
 )
<p>
 <strong>mysql_tablename()</strong>
 接受
 mysql_list_tables()
 返回的结果指针以及一个整数索引作为参数并返回表名。可以用
 mysql_num_rows()
 函数来判断结果指针中的表的数目。用
 <strong>mysql_tablename()</strong>
 函数来遍历此结果指针,或者任何处理结果表的函数,例如
 mysql_fetch_array()。
  <p><strong>Example #1 <strong>mysql_tablename()</strong> 例子</strong></p>
<?php
    mysql_connect("localhost", "mysql_user", "mysql_password");
    $result = mysql_list_tables("mydb");

    for ($i = 0; $i < mysql_num_rows($result); $i++)
        printf ("Table: %sn", mysql_tablename($result, $i));

    mysql_free_result($result);
?>
</p>
<p>
 参见 mysql_list_tables()。
</p>

标签: php php教程

热门推荐