I want to iterate through an object 3 times, but the array methor 'reset' doen't work on object.
// DB connection works, fetch mode is FETCH_OBJ an cannot be changed for this question, code is simplified
$a = $pdo->query("SELECT name FROM items");
for ($i = 0; $i < 3; $i++){
foreach ($a as $b)
echo $b->name;
}
I only can iterate once.