|
mysqli_result::fetch_arraymysqli_fetch_array(PHP 5) mysqli_result::fetch_array -- mysqli_fetch_array — Fetch a result row as an associative, a numeric array, or both ОписаниеОбъектно-ориентированный стиль Процедурный стиль Returns an array that corresponds to the fetched row or NULL if there are no more rows for the resultset represented by the result parameter. 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. Список параметров
Возвращаемые значенияReturns an array of strings that corresponds to the fetched row or NULL if there are no more rows in resultset. ПримерыПример #1 Объектно-ориентированный стиль
<?php Пример #2 Процедурный стиль
<?php Результат выполнения данных примеров: Kabul (AFG) Qandahar (AFG) Herat (AFG) Смотрите также
|
|