PHP mysqli_num_rows() 函數(shù)
PHP mysqli_num_rows() 函數(shù)
返回結(jié)果集中行的數(shù)量:
<?php // 假定數(shù)據(jù)庫(kù)用戶名:root,密碼:123456,數(shù)據(jù)庫(kù):RUNOOB $con=mysqli_connect("localhost","root","123456","RUNOOB"); if (mysqli_connect_errno($con)) { echo "連接 MySQL 失敗: " . mysqli_connect_error(); } $sql = "SELECT name,url FROM websites ORDER BY alexa;"; if ($result=mysqli_query($con,$sql)) { // 返回記錄數(shù) $rowcount=mysqli_num_rows($result); printf("總共返回 %d 行數(shù)據(jù)。",$rowcount); // 釋放結(jié)果集 mysqli_free_result($result); } mysqli_close($con); ?>
定義和用法
mysqli_num_rows() 函數(shù)返回結(jié)果集中行的數(shù)量。
語(yǔ)法
mysqli_num_rows(result);
參數(shù) | 描述 |
---|---|
result | 必需。規(guī)定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的結(jié)果集標(biāo)識(shí)符。 |
技術(shù)細(xì)節(jié)
返回值: | 返回結(jié)果集中行的數(shù)量。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP 運(yùn)算符
- PHP Switch 語(yǔ)句
- PHP 命名空間 namespace
- PHP array_chunk() 函數(shù)
- PHP array_combine() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP compact() 函數(shù)
- PHP end() 函數(shù)
- PHP next() 函數(shù)
- PHP pos() 函數(shù)
- PHP prev() 函數(shù)
- PHP 5 Calendar 函數(shù)
- PHP Filter 函數(shù)
- PHP 5 Math 函數(shù)