Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. array(
  2. id: 1,
  3. name: a,
  4. parent: NULL,
  5. childrens: array(
  6. array(
  7. id: 2,
  8. name: b,
  9. parent: 1,
  10. childrens: array(
  11. array(
  12. id: 4,
  13. name: d,
  14. parent: 2,
  15. childrens: NULL
  16. ),
  17. array(
  18. id: 5,
  19. name: e,
  20. parent: 2,
  21. childrens: NULL
  22. )
  23. )
  24. )
  25. array(
  26. id: 3,
  27. name: c,
  28. parent: 1,
  29. childrens: array(
  30. array(
  31. id: 5,
  32. name: f,
  33. parent: 3,
  34. childrens: NULL
  35. ),
  36. array(
  37. id: 7,
  38. name: h,
  39. parent: 3,
  40. childrens: NULL
  41. )
  42. )
  43. )
  44. )
  45. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement