码迷,mamicode.com
首页 > 其他好文 > 详细

fetchAll 的小小分析

时间:2020-05-29 17:57:48      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:dcl   protect   while   his   struct   format   object   null   this   

includes\database\prefetch.inc line 425

$this->defaultFetchStyle: fetch_object int 5

protected $defaultFetchOptions = array(
‘class‘ => ‘stdClass‘,
‘constructor_args‘ => array(),
‘object‘ => NULL,
‘column‘ => 0,
);

while (isset($this->currentRow)) {
// Grab the row in the format specified above.
$result[] = $this->current();
$this->next();
}


说明一个什么问题呢, 就是fetchAll 应该就是生成以0为开始的数组的, 数组key自增,从0开始, 数组值是对象。
 

fetchAll 的小小分析

标签:dcl   protect   while   his   struct   format   object   null   this   

原文地址:https://www.cnblogs.com/qinqiu/p/12988516.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!