深入mysql_fetch_row()与mysql_fetch_array()的区别详解

前端之家收集整理的这篇文章主要介绍了深入mysql_fetch_row()与mysql_fetch_array()的区别详解前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

这两个函数,返回的都是一个数组,区别就是第一个函数返回的数组是只包含值,我们只能$row[0],
$row[1],这样以数组下标来读取数据,而MysqL_fetch_array()返回的数组既包含第一种,也包含键值
对的形式,我们可以这样读取数据,(假如数据库的字段是 username,passwd):
<FONT style="COLOR: #ff0000">$row['username'],$row['passwd']
而且,如果用($row as $kay => $value)来操作的话,还以直接取得数据库的字段名称
更主要的是MysqLi是PHP5提供的新函数库,(i)表示改进,其执行速度更快.

例如


<div class="codetitle"><a style="CURSOR: pointer" data="62482" class="copybut" id="copybut62482" onclick="doCopy('code62482')"> 代码如下:
<div class="codebody" id="code62482">
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?PHP
//连接到本地MysqL数据库,选择test为操作库
$MysqLi = MysqLi_connect("localhost","root","","test",3306);
//用MysqL_query函数从user表里读取数据
$result = MysqLi_query($MysqLi,"SELECT FROM userinfo");
while($row = MysqLi_fetch_array($result))//通过循环读取数据内容
{
?>
<tr>
<td align="center" height="19"><?php echo $row["ID"]?></td>
<td align="center"><?php echo $row["Name"]?></td>
<td align="center"><?php echo $row["Detail"]?></td>
</tr>
<?PHP
}
//关闭数据库的连接
MysqLi_free_result($result);
MysqLi_close($MysqLi);
/
?>

原文链接:https://www.f2er.com/php/26467.html

猜你在找的PHP相关文章