首页 > Windows开发 > 详细

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

时间:2014-12-20 11:43:10      阅读:682      评论:0      收藏:0      [点我收藏+]

执行

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!