PHP mysqli_fetch_all() 函數(shù)
PHP mysqli_fetch_all() 函數(shù)
實(shí)例
從結(jié)果集中取得所有行作為關(guān)聯(lián)數(shù)組:
<?php
// 假定數(shù)據(jù)庫(kù)用戶名:root,密碼:123456,數(shù)據(jù)庫(kù):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ù)據(jù)
mysqli_fetch_all($result,MYSQLI_ASSOC);
// 釋放結(jié)果集
mysqli_free_result($result);
mysqli_close($con);
?>
// 假定數(shù)據(jù)庫(kù)用戶名:root,密碼:123456,數(shù)據(jù)庫(kù):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ù)據(jù)
mysqli_fetch_all($result,MYSQLI_ASSOC);
// 釋放結(jié)果集
mysqli_free_result($result);
mysqli_close($con);
?>
定義和用法
mysqli_fetch_all() 函數(shù)從結(jié)果集中取得所有行作為關(guān)聯(lián)數(shù)組,或數(shù)字?jǐn)?shù)組,或二者兼有。
注釋:該函數(shù)只在帶有 MySQL Native Driver 時(shí)可用。
語(yǔ)法
mysqli_fetch_all(result,resulttype);
參數(shù) | 描述 |
---|---|
result | 必需。規(guī)定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的結(jié)果集標(biāo)識(shí)符。 |
resulttype | 可選。規(guī)定應(yīng)該產(chǎn)生哪種類型的數(shù)組??梢允且韵轮抵械囊粋€(gè):
|
技術(shù)細(xì)節(jié)
返回值: | 返回包含結(jié)果行的關(guān)聯(lián)數(shù)組或數(shù)字?jǐn)?shù)組。 |
---|---|
PHP 版本: | 5.3+ |

相關(guān)文章
- PHP 安裝
- PHP 變量
- PHP 超級(jí)全局變量
- PHP 包含文件 include 和 require 語(yǔ)句
- PHP 文件處理
- PHP 過(guò)濾器
- PHP JSON
- PHP array_chunk() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_uintersect() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP array_unshift() 函數(shù)
- PHP compact() 函數(shù)
- PHP count() 函數(shù)
- PHP extract() 函數(shù)
- PHP uksort() 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP HTTP 函數(shù)