FrontBase 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

fbsql_table_name

(PHP 4 >= 4.2.0, PHP 5)

fbsql_table_nameGet table name of field

说明

string fbsql_table_name ( resource $result , int $index )

fbsql_table_name() gets the name of the current table in the given result set.

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

参数

result

A result pointer returned by fbsql_list_tables().

index

Integer index for the current table.

返回值

Returns the name of the table, as a string.

范例

Example #1 fbsql_table_name() example

<?php
fbsql_connect
("localhost""_SYSTEM""");
$result fbsql_list_tables("wisconsin");
$i 0;
while (
$i fbsql_num_rows($result)) {
    
$tb_names[$i] = fbsql_table_name($result$i);
    echo 
$tb_names[$i] . "<br />";
    
$i++;
}
?>


FrontBase 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程