<?php $objs = [ ['value'=>2, 'key'=>'a'], ['value'=>3, 'key'=>'b'] ]; $keys = array_column($objs, 'key'); $index = array_search('c', $keys); $objs[$index]['key'] = 5; var_dump($objs);
You have javascript disabled. You will not be able to edit any code.