Blogger Information
Blog 8
fans 0
comment 0
visits 5734
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP处理MySQL结果集
蓝谑的博客
Original
961 people have browsed it
  • mysqli_fetch_arry(resource result [,int resoult_type])

resource:资源类型的参数,要传入的是由mysqli_query()函数返回的数据指针
result_type:可选择项,设置结果集数组的表达方式,一般有三种取值
        MYSQLI_ASSOC:返回一个关联数组。数组小标由表的字段名组成
        MYSQLI_NUM; 返回一个索引数组。数组小标由数组组成。
        MYSQLI_BOTH:返回一个同时包含关联和数字索引的数组。默认值是它。
要利用循环才能输出所有的结果
  • mysqli_fetch_object(resource result);  //和上一个只有一个区别,就是上面返回的是一个数组,这里返回的是一个对象,只能通过“-->"的方式来访问,也是循环输出所有结果

  • mysqli_fetch_row(resource result);//从结果集中获取一行作为枚举数组

该函数返回根据所取得的行生成的数组,如果没有更多行,则返回null。
返回数组的偏移量从0开始,即以$row[0]的形式访问第一个元素(只有一个元素时也是如此);
只能使用数字索引来读取数组中的数据
也是循环输出所有的结果
  • mysqli_fetch_arroc( resource result);//从结果集中获取一行作为关联数组

  • mysqli_num_rows( resource result); //获取结果集中的记录数


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post