Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16362 программиста и 1782 робота. Сейчас ищут 1992 программиста ...
fbsql_table_name - Get table name of field
Вернуться к: FrontBase Функции
fbsql_table_name
(PHP 4 >= 4.2.0, PHP 5, PHP 7)
fbsql_table_name — Get 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.
Примеры
Пример #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 Функции