哈希空间 Ctrl + F 进行搜索
首页 php手册中文版 CSS中文手册 哈希文档 Markdown在线工具

PHP mysql 组件

mysql_tablename

(PHP 4, PHP 5)

mysql_tablename取得表名

警告

本扩展自 PHP 5.5.0 起已废弃,并在自 PHP 7.0.0 开始被移除。应使用 MySQLiPDO_MySQL 扩展来替换之。参见 MySQL:选择 API 指南来获取更多信息。用以替代本函数的有:

  • SQL Query: SHOW TABLES

说明

mysql_tablename(resource $result, int $i): string|false

result 中取得表名。

此函数已废弃,推荐使用 mysql_query() 函数来执行 SQL SHOW TABLES [FROM db_name] [LIKE 'pattern'] 替代。

参数

result

接受 mysql_list_tables() 返回的结果指针以及一个整数索引作为参数并返回表名。

i

The integer index (row/table number)

返回值

成功时返回表名 或者在失败时返回 false

Use the mysql_tablename() function to traverse this result pointer, or any function for result tables, such as mysql_fetch_array().

更新日志

版本 说明
5.5.0 mysql_tablename() 函数已废弃,调用时会抛出 E_DEPRECATED 级别的错误。

范例

示例 #1 mysql_tablename() example

<?php
mysql_connect
("localhost""mysql_user""mysql_password");
$result mysql_list_tables("mydb");
$num_rows mysql_num_rows($result);
for (
$i 0$i $num_rows$i++) {
    echo 
"Table: "mysql_tablename($result$i), "\n";
}

mysql_free_result($result);
?>

注释

注意:

The mysql_num_rows() function may be used to determine the number of tables in the result pointer.

参见

打开 哈希空间 微信小程序中查看更佳