update : 2015.11.03
php.shukuma.com검색:
|
maxdb_num_rowsmaxdb::num_rows(PECL maxdb >= 1.0) maxdb_num_rows -- maxdb::num_rows — Gets the number of rows in a result 설명절차식 형식
int maxdb_num_rows
( resource
$result
)객체 기반 형식 int $maxdb->num_rows;
Returns the number of rows in the result set. The use of maxdb_num_rows() depends on whether you use buffered or unbuffered result sets. In case you use unbuffered resultsets maxdb_num_rows() will not correct the correct number of rows until all the rows in the result have been retrieved. 반환값Returns number of rows in the result set.
예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 위 예제의 출력 예시: Result set has 15 rows. 참고
|