최신 웹 개발 튜토리얼
 

PHP mysqli_next_result() Function

<참고 PHP MySQLi

데이터베이스에 대해 여러 쿼리를 수행합니다. 사용 mysqli_next_result() 다음 결과 세트를 준비하는 기능 :

<?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 FROM Persons ORDER BY LastName;";
$sql .= "SELECT Country FROM Customers";

// Execute multi query
if (mysqli_multi_query($con,$sql))
{
  do
    {
    // Store first result set
    if ($result=mysqli_store_result($con))
      {
      while ($row=mysqli_fetch_row($result))
        {
        printf("%s\n",$row[0]);
        }
      mysqli_free_result($con);
      }
    }
  while (mysqli_next_result($con));
}

mysqli_close($con);
?>

정의 및 사용

mysqli_next_result() 함수에서 설정 한 다음 결과 준비 mysqli_multi_query() .


통사론

mysqli_next_result( connection ) ;

매개 변수 기술
connection 필요합니다. 사용하는 MySQL의 연결을 지정

기술적 세부 사항

반환 값 : 성공 TRUE. 실패 FALSE
PHP 버전 : 5+

<참고 PHP MySQLi