|
mysqli_result::field_seekmysqli_field_seekSet result pointer to a specified field offset DescriptionObject-oriented style
public true mysqli_result::field_seek(int
$index )Procedural style true mysqli_field_seek(mysqli_result
$result , int $index )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.
Parameters
Return Values
Always returns Changelog
ExamplesExample #1 Object-oriented style
Example #2 Procedural style
The above examples will output: Name: SurfaceArea Table: Country max. Len: 10 Flags: 32769 Type: 4 See Also
|