$res_id= 1;
$arrLis = json_decode($old_cmm_value, true);
if (!empty($old_cmm_value)) {
$old = array_filter(
$arrLis,
function ($val) use ($res_id) {
return $val['approval_id'] != $res_id;
}
);
$cmm_value = $new_cmm_value + $old;
} else {
$cmm_value = $new_cmm_value;
}
$val 为 $arrLis数组的每一个元素 将之与 $res_id 进行比较
返回的 $old 一般是保持键值的数组
可以使用sort 重新排序