|
mysqli_result::fetch_arraymysqli_fetch_arrayFetch a result row as an associative, a numeric array, or both DescriptionObject oriented style
mixed mysqli_result::fetch_array
([ int
$resulttype = MYSQLI_BOTH
] )Procedural style
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. Parameters
Return Values
Returns an array of strings that corresponds to the fetched row or ExamplesExample #1 Object oriented style
<?php Example #2 Procedural style
<?php The above examples will output: Kabul (AFG) Qandahar (AFG) Herat (AFG) See Also
|