php - How to generate breadcrumbs when I have a following category structure -


i have following nested categories structure array , need generate breadcrumbs each category. suppose viewing adidas category page in brands->apparel->adidas need breadcrumbs brands/apparel/adidas.

categories array structure follows:

[1] => array (     [name] => 01e3f447-4b81-11e7-a858-b8763f541038     [nodeinfo] => stdclass object         (             [idcategory] => 01e3f447-4b81-11e7-a858-b8763f541038             [category] => brands             [slug] => brands             [description] =>              [image] =>              [parentcategory] =>              [idstatus] => e9d3b949-1301-11e7-a9b8-b8763f541038             [date] => 2017-06-07 14:58:31         )      [children] => array         (             [0] => array                 (                     [name] => 0ded5b28-4b81-11e7-a858-b8763f541038                     [nodeinfo] => stdclass object                         (                             [idcategory] => 0ded5b28-4b81-11e7-a858-b8763f541038                             [category] => apparel                             [slug] => apparel                             [description] =>                              [image] =>                              [parentcategory] => 01e3f447-4b81-11e7-a858-b8763f541038                             [idstatus] => e9d3b949-1301-11e7-a9b8-b8763f541038                             [date] => 2017-06-07 14:58:51                         )                      [children] => array                         (                             [0] => array                                 (                                     [name] => 3681265e-4b81-11e7-a858-b8763f541038                                     [nodeinfo] => stdclass object                                         (                                             [idcategory] => 3681265e-4b81-11e7-a858-b8763f541038                                             [category] => adidas                                             [slug] => adidas                                             [description] =>                                              [image] =>                                              [parentcategory] => 0ded5b28-4b81-11e7-a858-b8763f541038                                             [idstatus] => e9d3b949-1301-11e7-a9b8-b8763f541038                                             [date] => 2017-06-07 14:59:59                                         )                                      [children] =>                                  )                              [1] => array                                 (                                     [name] => 3f211015-4b81-11e7-a858-b8763f541038                                     [nodeinfo] => stdclass object                                         (                                             [idcategory] => 3f211015-4b81-11e7-a858-b8763f541038                                             [category] => columbia                                             [slug] => columbia                                             [description] =>                                              [image] =>                                              [parentcategory] => 0ded5b28-4b81-11e7-a858-b8763f541038                                             [idstatus] => e9d3b949-1301-11e7-a9b8-b8763f541038                                             [date] => 2017-06-07 15:00:14                                         )                                      [children] =>                                  )                          )                  )              [1] => array                 (                     [name] => 1988d10a-4b81-11e7-a858-b8763f541038                     [nodeinfo] => stdclass object                         (                             [idcategory] => 1988d10a-4b81-11e7-a858-b8763f541038                             [category] => footwear                             [slug] => footwear                             [description] =>                              [image] =>                              [parentcategory] => 01e3f447-4b81-11e7-a858-b8763f541038                             [idstatus] => e9d3b949-1301-11e7-a9b8-b8763f541038                             [date] => 2017-06-07 14:59:11                         )                      [children] => array                         (                             [0] => array                                 (                                     [name] => 49becbc8-4b81-11e7-a858-b8763f541038                                     [nodeinfo] => stdclass object                                         (                                             [idcategory] => 49becbc8-4b81-11e7-a858-b8763f541038                                             [category] => polo                                             [slug] => polo                                             [description] =>                                              [image] =>                                              [parentcategory] => 1988d10a-4b81-11e7-a858-b8763f541038                                             [idstatus] => e9d3b949-1301-11e7-a9b8-b8763f541038                                             [date] => 2017-06-07 15:00:31                                         )                                      [children] =>                                  )                              [1] => array                                 (                                     [name] => 4e647bee-4b81-11e7-a858-b8763f541038                                     [nodeinfo] => stdclass object                                         (                                             [idcategory] => 4e647bee-4b81-11e7-a858-b8763f541038                                             [category] => nike                                             [slug] => nike                                             [description] =>                                              [image] =>                                              [parentcategory] => 1988d10a-4b81-11e7-a858-b8763f541038                                             [idstatus] => e9d3b949-1301-11e7-a9b8-b8763f541038                                             [date] => 2017-06-07 15:00:39                                         )                                      [children] =>                                  )                          )                  )          )  ) 


Comments

Popular posts from this blog

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -