I've an array like that :
array(2) {
["dashboard"]=>
array(3) {
["controller"]=>
string(5) "Index"
["action"]=>
string(5) "index"
["path"]=>
string(34) "dashboard/user/example/{page}/{id}"
}
["home"]=>
array(3) {
["controller"]=>
string(5) "Index"
["action"]=>
string(6) "second"
["path"]=>
string(10) "home/index"
}
}
How get all "path" values in an array ?
I tried to use array_search
and several functions in PHP but this doesn't work.