mysqli_stmt::more_results

mysqli_stmt_more_results

(PHP 5 >= 5.3.0, PHP 7)

mysqli_stmt::more_results -- mysqli_stmt_more_resultsCheck if there are more query results from a multiple query

설명

객체 기반 형식 (method):

public bool mysqli_stmt::more_results ( void )

절차식 형식:

bool mysqli_stmt_more_results ( mysql_stmt $stmt )

Checks if there are more query results from a multiple query.

인수

stmt

순차 형식 전용: mysqli_stmt_init()가 반환한 statement 식별자.

반환값

Returns TRUE if more results exist, otherwise FALSE.

MySQL Native Driver Only

mysqlnd에서만 사용할 수 있습니다.

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top