[+/-]
mysqli_result::$current_field,
mysqli_field_tellmysqli_result::data_seek,
mysqli_data_seekmysqli_result::fetch_all,
mysqli_fetch_allmysqli_result::fetch_array,
mysqli_fetch_arraymysqli_result::fetch_assoc,
mysqli_fetch_assocmysqli_result::fetch_field_direct,
mysqli_fetch_field_directmysqli_result::fetch_field,
mysqli_fetch_fieldmysqli_result::fetch_fields,
mysqli_fetch_fieldsmysqli_result::fetch_object,
mysqli_fetch_objectmysqli_result::fetch_row,
mysqli_fetch_rowmysqli_result::$field_count,
mysqli_num_fieldsmysqli_result::field_seek,
mysqli_field_seekmysqli_result::free,
mysqli_free_resultmysqli_result::$lengths,
mysqli_fetch_lengthsmysqli_result::$num_rows,
mysqli_num_rowsCopyright 1997-2012 the PHP Documentation Group.
Represents the result set obtained from a query against the database.
Changelog
Table 3.15. Changelog
| Version | Description |
|---|---|
| 5.4.0 | Iterator support was added, as
mysqli_result now implements
Traversable. |
mysqli_result {
mysqli_result , Traversable Propertiesint mysqli_result->current_field ;int mysqli_result->field_count ;array mysqli_result->lengths ;int mysqli_result->num_rows ;
Methodsbool 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();object mysqli_result::fetch_field_direct(int fieldnr);object mysqli_result::fetch_field();array mysqli_result::fetch_fields();object mysqli_result::fetch_object(string class_name,
array params);mixed mysqli_result::fetch_row();bool mysqli_result::field_seek(int fieldnr);void mysqli_result::free();
}

User Comments
Add your own comment.