|
PHP5中文手册
mysqli_field_seekresult->field_seek()(No version information available, might be only in CVS) result->field_seek() — Set result pointer to a specified field offset 说明Procedural style:
bool mysqli_field_seek
( mysqli_result $result
, int $fieldnr
)
Object oriented style (method): 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.
参数
返回值Returns the previous value of field cursor. 范例Example#1 Object oriented style
<?php Example#2 Procedural style
<?php 上例将输出:
|