Dutch PHP Conference 2025 - Call For Papers

mysqli_stmt::more_results

mysqli_stmt_more_results

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

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

Опис

Об'єктно-орієнтований стиль

public mysqli_stmt::more_results(): bool

Процедурний стиль:

mysqli_stmt_more_results(mysqli_stmt $statement): bool

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

Зауваження:

Доступно тільки з mysqlnd.

Параметри

statement

Тільки процедурний стиль: об'єкт mysqli_stmt, якого повертає функція mysqli_stmt_init().

Значення, що повертаються

Returns true if more results exist, otherwise false.

Прогляньте також

add a note

User Contributed Notes

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