mysqli_stmt::store_result
mysqli_result->current_field
Mysqli
PHP Manual
MySQLi_Result クラス
導入
データベースへのクエリにより得られた結果セットを表します。
クラス概要
MySQLi_Result
{
/* プロパティ */
int
$current_field
;
int
$field_count
;
array
$lengths
;
int
$num_rows
;
/* メソッド */
int
MySQLi_Result::mysqli_field_tell
(
mysqli_result
$result
)
bool
mysqli_result::data_seek
(
int
$offset
)
mixed
mysqli_result::fetch_all
([
int
$resulttype
= MYSQLI_NUM
] )
mixed
mysqli_result::fetch_array
([
int
$resulttype
= MYSQLI_BOTH
] )
array
mysqli_result::fetch_assoc
(
void
)
object
mysqli_result::fetch_field_direct
(
int
$fieldnr
)
object
mysqli_result::fetch_field
(
void
)
array
mysqli_result::fetch_fields
(
void
)
object
mysqli_result::fetch_object
([
string
$class_name
[,
array
$params
]] )
mixed
mysqli_result::fetch_row
(
void
)
int
mysqli_num_fields
(
mysqli_result
$result
)
bool
mysqli_result::field_seek
(
int
$fieldnr
)
void
mysqli_result::free
(
void
)
array
mysqli_fetch_lengths
(
mysqli_result
$result
)
int
mysqli_num_rows
(
mysqli_result
$result
)
}
目次
mysqli_result->current_field
? 結果ポインタにおける現在のフィールドオフセットを取得する
mysqli_result::data_seek
? 結果の任意の行にポインタを移動する
mysqli_result::fetch_all
? 結果のすべての行を連想配列・数値添字配列あるいはその両方の形式で取得する
mysqli_result::fetch_array
? 結果の行を連想配列・数値添字配列あるいはその両方の形式で取得する
mysqli_result::fetch_assoc
? 結果の行を連想配列で取得する
mysqli_result::fetch_field_direct
? 単一のフィールドのメタデータを取得する
mysqli_result::fetch_field
? 結果セットの次のフィールドを返す
mysqli_result::fetch_fields
? 結果セットのフィールド情報をオブジェクトの配列で返す
mysqli_result::fetch_object
? 結果セットの現在の行をオブジェクトとして返す
mysqli_result::fetch_row
? 結果の行を数値添字配列で取得する
mysqli_result->field_count
? 結果のフィールド数を取得する
mysqli_result::field_seek
? 結果ポインタを、指定したフィールドオフセットに設定する
mysqli_result::free
? 結果に関連付けられたメモリを開放する
mysqli_result->lengths
? 結果セットにおける現在の行のカラムの長さを返す
mysqli_result->num_rows
? 結果の行数を取得する
mysqli_stmt::store_result
mysqli_result->current_field
Mysqli
PHP Manual