mysqli::more_results

mysqli_more_results

(PHP 5, PHP 7)

mysqli::more_results -- mysqli_more_resultsCheck if there are any more query results from a multi query

설명

객체 기반 형식

bool mysqli::more_results ( void )

절차식 형식

bool mysqli_more_results ( mysqli $link )

Indicates if one or more result sets are available from a previous call to mysqli_multi_query().

인수

link

순차 형식 전용: mysqli_connect()mysqli_init()가 반환한 연결 식별자.

반환값

Returns TRUE if one or more result sets are available from a previous call to mysqli_multi_query(), otherwise FALSE.

예제

See mysqli_multi_query().

참고

add a note add a note

User Contributed Notes

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