|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2011-09-30 23:07 UTC] johannes@php.net
 
-Status: Open
+Status: Analyzed
  [2011-09-30 23:07 UTC] johannes@php.net
  [2011-12-24 06:16 UTC] ssufficool at gmail dot com
  [2013-06-12 05:01 UTC] ssufficool@php.net
  [2013-06-12 05:02 UTC] ssufficool@php.net
 
-Status: Analyzed
+Status: Feedback
  [2013-06-12 05:02 UTC] ssufficool@php.net
  [2013-10-15 11:54 UTC] php-bugs at lists dot php dot net
  [2013-10-15 12:04 UTC] grinyad at mail dot ru
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 07:00:01 2025 UTC | 
Description: ------------ You cant use multiple PDORow's at the same time. Test script: --------------- <?php $row = $stmt->fetch(PDO::FETCH_LAZY); print_r($row); $row2 = $stmt->fetch(PDO::FETCH_LAZY); print_r($row); print_r($row2); ?> `$row` => PDORow Object ( [queryString] => select acl.* from accesscontrollevel as acl [Id] => 2 [Title] => Banned ) `$row` => PDORow Object ( [queryString] => select acl.* from accesscontrollevel as acl [Id] => 3 [Title] => Member ) `$row2` => PDORow Object ( [queryString] => select acl.* from accesscontrollevel as acl [Id] => 3 [Title] => Member ) `$row` and `$row2` are the same as last fetch result `$row2`.I mean that every PDORow Object will have the last fetch values. I think this is a bug.