<?php $arr = [ ['moo' => 'abc', 'foo' => 1], ['moo' => 'gyu', 'foo' => 2] ]; $newArr = array_reduce($arr, function($carry, $item){ if ($item['moo'] == 'gyu') $carry = $item; return $carry; }); print_r($newArr);
You have javascript disabled. You will not be able to edit any code.