|
PHP5中文手册
maxdb_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 maxdb_field_seek
( resource $result
, int $fieldnr
)
Object oriented style (method): result
bool field_seek
( int $fieldnr
)
Sets the field cursor to the given offset. The next call to maxdb_fetch_field() will retrieve the field definition of the column associated with that offset.
返回值maxdb_field_seek() returns previuos value of field cursor. 范例Example#1 Object oriented style
<?php Example#2 Procedural style
<?php The above examples would produce the following output:
|