|
mysqli_result::fetch_arraymysqli_fetch_arrayFetch a result row as an associative, a numeric array, or both BeschreibungObjektorientierter Stil
mixed mysqli_result::fetch_array
([ int
$resulttype = MYSQLI_BOTH
] )Prozeduraler Stil
mixed mysqli_fetch_array
( mysqli_result
$result
[, int $resulttype = MYSQLI_BOTH
] )
Returns an array that corresponds to the fetched row or mysqli_fetch_array is an extended version of the mysqli_fetch_row function. In addition to storing the data in the numeric indices of the result array, the mysqli_fetch_array function can also store the data in associative indices, using the field names of the result set as keys.
If two or more columns of the result have the same field names, the last column will take precedence and overwrite the earlier data. In order to access multiple columns with the same name, the numerically indexed version of the row must be used. Parameter-Liste
Rückgabewerte
Returns an array of strings that corresponds to the fetched row or BeispieleBeispiel #1 Objektorientierter Stil
<?phpBeispiel #2 Prozeduraler Stil
<?phpDie obigen Bespiele erzeugen folgende Ausgabe: Kabul (AFG) Qandahar (AFG) Herat (AFG) Siehe auch
|