update : 2015.11.03
php.shukuma.com검색:
|
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 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 예제Example #1 객체 기반 형식
<?php Example #2 절차식 형식
<?php 위 예제들의 출력: Kabul (AFG) Qandahar (AFG) Herat (AFG) 참고
|