array_filter 使用函数进行回调过滤函数中的单元
作者:互联网
$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 重新排序
标签:cmm,old,函数,val,res,value,filter,array,id 来源: https://blog.csdn.net/ahaotata/article/details/111056880