this_in_foreach_003.phpt 186 B

1234567891011
  1. --TEST--
  2. $this in foreach
  3. --FILE--
  4. <?php
  5. $a = [1];
  6. foreach ($a as &$this) {
  7. var_dump($this);
  8. }
  9. ?>
  10. --EXPECTF--
  11. Fatal error: Cannot re-assign $this in %sthis_in_foreach_003.php on line 3