当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP mysqli_num_rows()用法及代码示例


mysqli_num_rows()函数是PHP中的内置函数,用于返回结果集中存在的行数。它通常用于检查数据库中是否存在数据。要使用此函数,必须首先建立与MySQL数据库的连接。

用法:

mysqli_num_rows ( $result );

参数:该函数接受单个参数$result。它是必填参数,代表MySQL中提取查询返回的结果集。


返回值:它返回结果集中存在的行数。

考虑在名为Geeks的MySQL数据库中有一个名为geek的表。下面是表格怪胎的描述。

用户名 密码
Geek1 Pass1
Geek2 Pass2
Geek3 Pass3
Geek4 Pass4

以下示例程序旨在说明PHP中的mysqli_num_rows()函数。

<?php 
    // Setting up connection with database Geeks 
    $connection = mysqli_connect("localhost", "root", "",  
                                                 "Geeks"); 
      
    // Check connection 
    if (mysqli_connect_errno()) 
    { 
        echo "Database connection failed."; 
    } 
      
    // query to fetch Username and Password from 
    // the table geek 
    $query = "SELECT Username, Password FROM geek"; 
      
    // Execute the query and store the result set 
    $result = mysqli_query($connection, $query); 
      
    if ($result) 
    { 
        // it return number of rows in the table. 
        $row = mysqli_num_rows($result); 
          
        printf("Number of row in the table : " . $row); 
    
        // close the result. 
        mysqli_free_result($result); 
    } 
  
    // Connection close  
    mysqli_close($connection); 
?>

输出

Number of row in the table :5


相关用法


注:本文由纯净天空筛选整理自RahulUniyal大神的英文原创作品 PHP | mysqli_num_rows() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。