Guest User

Untitled

a guest
Nov 14th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. {
  2. "1": {
  3. "name": "test",
  4. "followup": {
  5. "1": {
  6. "id": "98",
  7. "followup": {
  8. "1": {
  9. "id": "93",
  10. "followup": {
  11. "1": {
  12. "id": "174"
  13. },
  14. }
  15. }
  16. }
  17. }
  18. }
  19. }
  20. }
  21.  
  22. $ids = array();
  23. $data = json_decode($str, true);
  24.  
  25. array_walk_recursive($data, function($v, $k) use (&$ids) {
  26. if ($k === 'id') {
  27. $ids[] = $v;
  28. }
  29. });
  30.  
  31. var_dump($ids);
Add Comment
Please, Sign In to add comment