|
mysqli_result::fetch_fieldmysqli_fetch_fieldReturns the next field in the result set BeschreibungObjektorientierter Stil
object mysqli_result::fetch_field
( void
)
Prozeduraler Stil
object mysqli_fetch_field
( mysqli_result
$result
)Returns the definition of one column of a result set as an object. Call this function repeatedly to retrieve information about all columns in the result set. Parameter-Liste
Rückgabewerte
Returns an object which contains field definition information or
BeispieleBeispiel #1 Objektorientierter Stil
<?phpBeispiel #2 Prozeduraler Stil
<?phpDie obigen Bespiele erzeugen folgende Ausgabe: Name: Name Table: Country max. Len: 11 Flags: 1 Type: 254 Name: SurfaceArea Table: Country max. Len: 10 Flags: 32769 Type: 4 Siehe auch
|