PHP mysqli_fetch_array() 函數(shù)
PHP mysqli_fetch_array() 函數(shù)
從結(jié)果集中取得一行作為數(shù)字數(shù)組或關(guān)聯(lián)數(shù)組:
mysqli_fetch_array()
<?php
// 假定數(shù)據(jù)庫用戶名:root,密碼:123456,數(shù)據(jù)庫:RUNOOB
$con=mysqli_connect("localhost","root","123456","RUNOOB");
if (mysqli_connect_errno($con))
{
echo "連接 MySQL 失敗: " . mysqli_connect_error();
}
$sql="SELECT name,url FROM websites ORDER BY alexa";
$result=mysqli_query($con,$sql);
// 數(shù)字數(shù)組
$row=mysqli_fetch_array($result,MYSQLI_NUM);
printf ("%s : %s",$row[0],$row[1]);
// 關(guān)聯(lián)數(shù)組
$row=mysqli_fetch_array($result,MYSQLI_ASSOC);
printf ("%s : %s",$row["name"],$row["url"]);
// 釋放結(jié)果集
mysqli_free_result($result);
mysqli_close($con);
?>
定義和用法
mysqli_fetch_array() 函數(shù)從結(jié)果集中取得一行作為關(guān)聯(lián)數(shù)組,或數(shù)字數(shù)組,或二者兼有。
注釋:該函數(shù)返回的字段名是區(qū)分大小寫的。
語法
mysqli_fetch_array(result,resulttype);
參數(shù) | 描述 |
---|---|
result | 必需。規(guī)定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的結(jié)果集標(biāo)識符。 |
resulttype | 可選。規(guī)定應(yīng)該產(chǎn)生哪種類型的數(shù)組??梢允且韵轮抵械囊粋€:
|
技術(shù)細節(jié)
返回值: | 返回與讀取行匹配的字符串?dāng)?shù)組。如果結(jié)果集中沒有更多的行則返回 NULL。 |
---|---|
PHP 版本: | 5+ |

相關(guān)文章
- PHP 常量
- PHP 字符串
- PHP 文件處理
- PHP 發(fā)送電子郵件
- PHP array() 函數(shù)
- PHP array_chunk() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_key_first() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP count() 函數(shù)
- PHP end() 函數(shù)
- PHP list() 函數(shù)
- PHP next() 函數(shù)
- PHP prev() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP 5 Directory 函數(shù)