php数组元素的增加删除修改操作方法
增加
$arr[$iy]["pr_count"]+=$pr_count;
减少
$arr[$iy]["pr_count"]-=$pr_count;
删除
unset($arr[$iy]);
修改
$arr[$iy]["pr_count"]=$pr_count;
增加
$arr[$iy]["pr_count"]+=$pr_count;
减少
$arr[$iy]["pr_count"]-=$pr_count;
删除
unset($arr[$iy]);
修改
$arr[$iy]["pr_count"]=$pr_count;