Home  >  Article  >  Backend Development  >  PHP与数据库链接,该怎么处理

PHP与数据库链接,该怎么处理

WBOY
WBOYOriginal
2016-06-13 12:09:41877browse

PHP与数据库链接
我看了下DISCUZ的数据库工具类
我有个疑惑:
 function dql($sql)
         {
             $res=$this->mysqli->query($sql);
             if(!empty($res))
             {
              $arr=array();
             while ($row=$res->fetch_row())
             {$arr[]=$row;}
             return $arr;
             $res->free_result();
             }else 
             {return null;}
他是把从数据库取出来的数据变成一个数组$ROW然后又把$row 存储到了$arr ,那这样他返回的就是一个二维数组
那为什么不直接返回一个$row?何必再进行2次封装呢?
------解决思路----------------------
返回一个$row , 你还怎么获取所有记录呢。
------解决思路----------------------
如果只返回$row,只会取得最后一条数据。
现在返回的是二维数组,返回的是表结构的多条数据。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn