$arr_ramones = array(
1=>array('name'=>'johnny', 'display'=>1),
2=>array('name'=>'joey', 'display'=>1),
3=>array('name'=>'cj', 'display'=>0),
4=>array('name'=>'deedee', 'display'=>1),
5=>array('name'=>'marky', 'display'=>0)
);
I'd like to loop through my array but only with rows that have a display value of 1.
I read how to do this with a regular array. Can something similar be done with multidimensional arrays without costing performance? My example array is small - real world example contains thousands of values.