fbsql_tablename

(PHP 4 >= 4.2.0, PHP 5)

fbsql_tablename -- Get table name of field

Описание

string fbsql_tablename ( resource result, int i )

fbsql_tablename() 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().

i

Integer index for the current table.

Возвращаемые значения

Returns the name of the table, as a string.

Примеры

Пример 1. fbsql_tablename() example

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