Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. function flatten2d($multi_dimensional_array) {
  4. $flattened = [];
  5. $flatten = function($value, $index) {
  6. global $flattened;
  7. array_push($flattened, $value);
  8. };
  9. array_walk_recursive($multi_dimensional_array, $flatten);
  10. return $flattened;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement