PHP. Руководство по PHP. 2005
mysqli_field_seek
mysqli_field_seek
(PHP 5)mysqli_field_seek
(no version information, might be only in CVS)result->field_seek --
Set result pointer to a specified field offset
Description
Procedural style:bool mysqli_field_seek (mysqli_result result, int fieldnr)
Object oriented style (method):class mysqli_result {
bool field_seek (int fieldnr)
}
Sets the field cursor to the given offset. The next call to mysqli_fetch_field()
will retrieve the field definition of the column associated with that offset.
Замечание: To seek to the beginning of a row, pass an offset value of zero.