본문 바로가기
MySql

MySQL PHP 확인 MySQL 마지막 행

by 베이스 공부 2021. 2. 1.
반응형

이것이 MySQL의 마지막 행인지 아닌지 확인하기 위해 PHP에 관한 간단한 질문이 있습니다. 예를 들어 다음 코드가 있습니다.

$result = mysql_query("SELECT *SOMETHING* ");

while($row = mysql_fetch_array($result))
{
if (*this is the last row*)
{/* Do Something Here*/}
else
{/* Do Another Thing Here*/}
}

행이 마지막 행인지 아닌지 확인하는 데 어려움이 있습니다. 어떻게하는지 아십니까? 감사.

 

해결 방법

 


$numResults = mysql_num_rows($result);
$counter = 0
while ($row = mysql_fetch_array($result)) {
    if (++$counter == $numResults) {
        // last row
    } else {
        // not last row
    }
}

 

참조 페이지 https://stackoverflow.com/questions/12123933

 

 

반응형

댓글