mysqli_stmt
PHP Manual

mysqli_stmt::next_result

mysqli_stmt_next_result

(Информация о версии неизвестна, возможно, только в SVN)

mysqli_stmt::next_result -- mysqli_stmt_next_resultReads the next result from a multiple query

Описание

Объектно-ориентированный стиль (method):

public bool mysqli_stmt::next_result ( void )

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

bool mysqli_stmt_next_result ( mysql_stmt $stmt )

Reads the next result from a multiple query.

Список параметров

stmt

Только для процедурного стиля: Идентификатор выражения, полученный с помощью mysqli_stmt_init().

Возвращаемые значения

Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.

Ошибки

Emits an E_STRICT level error if a result set does not exist, and suggests using mysqli_stmt::more_results() in these cases, before calling mysqli_stmt::next_result().

Смотрите также


mysqli_stmt
PHP Manual