Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2014
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $array = array(
  2. '1' => array('id' => '123'),
  3. '2' => array('id' => '22'),
  4. '3' => array('id' => '133'),
  5. '4' => array('id' => '143'),
  6. '5' => array('id' => '153'),
  7. );
  8.  
  9. array_walk_recursive($array, function($v, $k) use (&$result) {
  10. $result[] = $v;
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement