fork download
  1. <?php
  2.  
  3. $array = [$array2 = ['qwe' => '123'],$array3 = ['qwe' => '1234']];
  4.  
  5. foreach ($array as $val) {
  6. echo $val['qwe']."\n";
  7. }
Success #stdin #stdout 0.02s 25928KB
stdin
Standard input is empty
stdout
123
1234