fork download
  1. <?php
  2. $global_array = array();
  3. $productsPerCategory = array(
  4. "fruits" => array("banana", "mango", "orange"),
  5. "vegatables" => array("carrot", "potato", "lettuce"),
  6. "meat" => array("pork", "beef")
  7. );
  8.  
  9. function data($products){
  10. global $global_array; // <-- reference the global variable '$global_array'
  11. // (omitting this will create a new, empty, local variable)
  12. forEach ($products as $key => $value) {
  13. $global_array[] = $value;
  14. }
  15. }
  16.  
  17. forEach ($productsPerCategory as $category => $products) {
  18. data($products);
  19. }
  20.  
  21. var_dump($global_array);
  22. ?>
  23.  
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
array(8) {
  [0]=>
  string(6) "banana"
  [1]=>
  string(5) "mango"
  [2]=>
  string(6) "orange"
  [3]=>
  string(6) "carrot"
  [4]=>
  string(6) "potato"
  [5]=>
  string(7) "lettuce"
  [6]=>
  string(4) "pork"
  [7]=>
  string(4) "beef"
}