當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。