I must do foreach array:
Array
(
[0] => Array
(
[name] => news_number
[value] => 10
)
)
and get “value” to variable $value. How i can do ?
i have :
foreach($this->_config as $key){
foreach($key as $value['news_number'] => $key){
echo $key;
}
}
but is not good i have “news_number10”.
try this:
If you’re looking for a specific variable in your configuration data, you could simply do this: