1. <?php
  2. $a = array('a', 'b');
  3. foreach ($a as &$g) { }
  4. foreach ($a as $g) { }
  5. echo("<pre>");
  6. var_dump($a);
  7. ?>