I have this array
Array
(
[0] => Array
(
[completed_system_products_id] => 15
[completed_systems_id] => 9
[step_number] => 8
[product_id] => 230
[1] => Array
(
[completed_system_products_id] => 14
[completed_systems_id] => 9
[step_number] => 5
[product_id] => 127
[2] => Array
(
[completed_system_products_id] => 13
[completed_systems_id] => 9
[step_number] => 4
How do i find the array with step_number = 4
any ideas
i tried this
$something = array_search(4, $array);
but not what i expected