pg_num_rows
pg_num_rows
(PHP 4 >= 4.2.0, PHP 5, PHP 7)
pg_num_rows - 返回结果中的行数
描述
int pg_num_rows ( resource $result )
pg_num_rows()
将返回PostgreSQL结果资源中的行数。
注意
:这个函数被称为pg_numrows()
。
参数
result
PostgreSQL查询结果资源,由pg_query(),pg_query_params()或pg_execute()等返回。
返回值
结果中的行数。出错时,返回-1。
例子
Example #1 pg
_
num
_
rows() example
<?php
$result = pg_query($conn, "SELECT 1"
$rows = pg_num_rows($result
echo $rows . " row(s) returned.\n";
?>
上面的例子将输出:
1 row(s) returned.