PHP 8.3.4 Released!

mysqli::more_results

mysqli_more_results

(PHP 5, PHP 7, PHP 8)

mysqli::more_results -- mysqli_more_resultsマルチクエリからの結果がまだ残っているかどうかを調べる

説明

オブジェクト指向型

public mysqli::more_results(): bool

手続き型

mysqli_more_results(mysqli $mysql): bool

直前の mysqli_multi_query() のコール結果に ひとつ以上の結果セットが残っているかどうかを調べます。

パラメータ

link

手続き型のみ: mysqli_connect() あるいは mysqli_init() が返す mysqliオブジェクト。

戻り値

直近の mysqli_multi_query() の呼び出しで (エラーを含めて) 1 件以上の結果セットが存在する場合に true、それ以外の場合に false を返します。

mysqli_multi_query() を参照ください。

参考

add a note

User Contributed Notes

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