|
PHP5中文手册
mysqli_field_tellresult->current_field(No version information available, might be only in CVS) result->current_field — Get current field offset of a result pointer 说明Procedural style:
int mysqli_field_tell
( mysqli_result $result
)
Object oriented style (property): mysqli_result
int$current_field
;
Returns the position of the field cursor used for the last mysqli_fetch_field() call. This value can be used as an argument to mysqli_field_seek(). 参数
返回值Returns current offset of field cursor. 范例Example#1 Object oriented style
<?php Example#2 Procedural style
<?php 上例将输出:
|