<?php class Foo { public $items = [1,2,3]; function getItems() { return $this->items; } } $foo = new Foo(); foreach($foo->getItems() as &$item) { echo $item, PHP_EOL; $item = '-1'; } var_dump($foo->getItems());
You have javascript disabled. You will not be able to edit any code.