PHP查询数据库,对象结果集转化为数组
Posted 东方素
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP查询数据库,对象结果集转化为数组相关的知识,希望对你有一定的参考价值。
$row = $this->db->get();//得出对象结果集 $result = array(); if($row) { //转化为数组 while($value = $row->fetch_array()) { $result[] = $value; } } print_r($result);eixt; return $result;
$result=$mysql_query("select `id` from table_a"); $ar=array(); while($rows=$mysql_fetch_array($result)) { $ar[] = rows[‘id‘];//把id存放到数组里 }
以上是关于PHP查询数据库,对象结果集转化为数组的主要内容,如果未能解决你的问题,请参考以下文章