|
PHP5中文手册
maxdb_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 maxdb_field_tell
( resource $result
)
Object oriented style (property): result
int
$current_field
;
Returns the position of the field cursor used for the last maxdb_fetch_field() call. This value can be used as an argument to maxdb_field_seek(). 返回值Returns current offset of field cursor. 范例Example#1 Object oriented style
<?php Example#2 Procedural style
<?php The above examples would produce the following output:
|