码迷,mamicode.com
首页 > Windows程序 > 详细

This result is a forward only result set, calling rewind() after moving forward is not supported

时间:2014-12-20 11:46:25      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:php   pdo   遍历   

执行

foreach ( $results as $result ){    
       // code goes here ..
}
....

foreach ( $results as $result ){    
       // code goes here ..
}
会提示This result is a forward only result set, calling rewind() after moving forward is not supported

是因为两次遍历pdo resultSet造成的,解决办法:

$records = array();

foreach ($results as $result)
{
    $records[] = $result;
}
这样就可以多次遍历了


This result is a forward only result set, calling rewind() after moving forward is not supported

标签:php   pdo   遍历   

原文地址:http://blog.csdn.net/wang_quan_li/article/details/41318271

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