Filter a 2d array by a static value and a column in another 2d array – PHP
I have 2 arrays where they have some common id values, but the keys for these id keys differ slightly. $comps = [ [ 'c_id' => '123', 'status' => 'active' ], [ 'c_id' => '456', 'status' => 'destroyed' ], […