博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php中mysqli_fetch_assoc()和mysqli_fetch_row()的区别
阅读量:4953 次
发布时间:2019-06-12

本文共 328 字,大约阅读时间需要 1 分钟。

mysqli_fetch_assoc() 函数

从结果集中取得一行作为关联数组:

定义和用法

mysqli_fetch_assoc() 函数从结果集中取得一行作为关联数组。

注释:该函数返回的字段名是区分大小写的。

 

mysqli_fetch_row() 函数

从结果集中取得行

"; } // 释放结果集合 mysqli_free_result($result);}mysqli_close($con);?>

定义和用法

mysqli_fetch_row() 函数从结果集中取得一行,并作为枚举数组返回。

转载于:https://www.cnblogs.com/Yaucheun/p/10447808.html

你可能感兴趣的文章