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

fbsql_num_rows

(PHP 4 >= 4.0.6, PHP 5)

fbsql_num_rowsGet number of rows in result

说明

int fbsql_num_rows ( resource $result )

Gets the number of rows in the given result set.

This function is only valid for SELECT statements. To retrieve the number of rows returned from a INSERT, UPDATE or DELETE query, use fbsql_affected_rows().

参数

result

A result identifier returned by fbsql_query() or fbsql_db_query().

返回值

Returns the number of rows returned by the last SELECT statement.

范例

Example #1 fbsql_num_rows() example

<?php

$link 
fbsql_connect("localhost""username""password");
fbsql_select_db("database"$link);

$result fbsql_query("SELECT * FROM table1;"$link);
$num_rows fbsql_num_rows($result);

echo 
"$num_rows Rows\n";

?>

参见


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