|
maxdb_fetch_fieldmaxdb_result::fetch_fieldReturns the next field in the result set BeschreibungProzeduraler Stil
mixed maxdb_fetch_field
( resource
$result
)Objektorientierter Stil
mixed maxdb_result::fetch_field
( void
)
The maxdb_fetch_field returns the definition of one column
of a result set as an resource. Call this function repeatedly to retrieve
information about all columns in the result set.
maxdb_fetch_field returns Rückgabewerte
Returns an resource which contains field definition information or
BeispieleBeispiel #1 Objektorientierter Stil
<?phpBeispiel #2 Prozeduraler Stil
<?phpDas oben gezeigte Beispiel erzeugt eine ähnliche Ausgabe wie: Name: NAME Table: max. Len: 10 Flags: -1 Type: 2 Name: CNO Table: max. Len: 4 Flags: -1 Type: 0 Siehe auch
|