fork download
  1. <?php
  2.  
  3. $data = array(array('test' => 'one'), array('test' => 'two'));
  4.  
  5. foreach($data as &$entry) {
  6. $entry['test'] .= '+';
  7. }
  8.  
  9. foreach($data as $entry) {
  10. echo $entry['test']."\n";
  11. }
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
one+
one+