최신 웹 개발 튜토리얼
 

PHP mysqli_num_rows() Function

<참고 PHP MySQLi

결과 세트의 행 수를 반환합니다 :

<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$sql="SELECT Lastname,Age FROM Persons ORDER BY Lastname";

if ($result=mysqli_query($con,$sql))
  {
  // Return the number of rows in result set
  $rowcount=mysqli_num_rows($result);
  printf("Result set has %d rows.\n",$rowcount);
  // Free result set
  mysqli_free_result($result);
  }

mysqli_close($con);
?>

정의 및 사용

mysqli_num_rows() 함수는 결과 세트의 행의 수를 반환한다.


통사론

mysqli_num_rows( result ) ;

매개 변수 기술
result 필요합니다. 에 의해 반환 된 결과 집합 식별자 지정 mysqli_query() , mysqli_store_result() 또는 mysqli_use_result()

기술적 세부 사항

반환 값 : 결과 집합의 행 수를 반환
PHP 버전 : 5+

<참고 PHP MySQLi