PHP » GoLang |
login |
register |
about
|
GoLang mysqli_result::fetch_array
request it (448)
GoLang replacement for PHP's mysqli_result::fetch_array
[edit | history]
PHP mysqli_result::fetch_arrayPHP original manual for mysqli_result::fetch_array [ show | php.net ]mysqli_result::fetch_arraymysqli_fetch_array(PHP 5, PHP 7) mysqli_result::fetch_array -- mysqli_fetch_array — Fetch a result row as an associative, a numeric array, or both DescriptionObject oriented style Procedural style
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
|
more
Recently updated
more
Most requested
more
Last requests
|