I need to print only one sub_title of first child(1955) array.
Here is some sample code (that works) to show what I mean.
$array = Array
(
[1955] => Array
(
[sub_title] => subtitle
[sub_content] => content
)
[1957] => Array
(
[sub_title] => subtitle
[sub_content] => conent
)
[1958] => Array
(
[sub_title] => subtitle
[sub_content] => conent
)
)
array_walk($array, function($item){
echo $item['sub_title'];
break;
});