如何正确替换数组中的value元素? [英] How right replace value element in array?

查看:309
本文介绍了如何正确替换数组中的value元素?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想比较数组中的键值,以及是否找到匹配项来增加元素的值.

I want to compare the key values ​​in the array and if a match is found to increase the value of the element.

为此,我使用代码:

// var_dump $all_array 
array(2) { 
    [0]=> array(6) { 
        [0]=> string(8) "art_7880"
        [1]=> string(11) "Арт.7880"
        [2]=> string(1) "1"
        [3]=> NULL
        [4]=> string(45) "png"
        [5]=> int(1372269755) 
    } 
    [1]=> array(6) { 
         [0]=> string(8) "art_7880"
         [1]=> string(11) "Арт.7880"
         [2]=> string(1) "1"
         [3]=> NULL
         [4]=> string(45) "png"
         [5]=> int(1372269874) 
    } 
}
// var_dump $count 
array(2) { [0]=> string(2) "10" [1]=> string(1) "1" }

// var_dump $product
array(2) { [0]=> string(10) "1372269755" [1]=> string(10) "1372269874" }

$count=$_POST['count'];
$product=$_POST['product'];
$count_arr_products=count($product);

for ($i=0; $i<=$count_arr_products; $i++){    
    foreach ($all_array as $keys => $elms) {
        if ($product[$i]==$elms[5]) {
            if($count[$i] > 0) {
                $elms[2] = $count[$i];
            } else {
                unset($keys);
            }
        }
    }
}

但是步骤$elms[2] = $count[$i];不起作用-结果值$elms[2]不变...

but step $elms[2] = $count[$i]; not work - in result value $elms[2] not change...

推荐答案

您需要制作$elms参考.默认情况下,它将是子数组的副本,因此分配不会更新原始数组.

You need to majke $elms a reference. By default it will be a copy of the sub-array, so assignment won't update the original array.

$all_array = array(array("art_7880", "Арт.7880", "1", NULL, "png", 1372269755),
                   array("art_7880", "Арт.7880", "1", NULL, "png", 1372269874));
$count = array("10", "1");
$product = array("1372269755", "1372269874");

$count = array("10", "1");
$product = array("1372269755", "1372269874");
$count_arr_products = count($product);
for($i=0; $i<$count_arr_products; $i++){ // Use < not <=
  foreach ($all_array as $keys => &$elms) { // Use a reference so we can update it
    if ($product[$i]==$elms[5]){
      if ($count[$i] > 0) {
        $elms[2] = $count[$i];
      } else {
        unset($all_array[$keys]); // not unset($keys)
      }
    }
  }
}
var_dump($all_array);

输出:

array(2) {
  [0]=>
  array(6) {
    [0]=>
    string(8) "art_7880"
    [1]=>
    string(11) "Арт.7880"
    [2]=>
    string(2) "10"
    [3]=>
    NULL
    [4]=>
    string(3) "png"
    [5]=>
    int(1372269755)
  }
  [1]=>
  &array(6) {
    [0]=>
    string(8) "art_7880"
    [1]=>
    string(11) "Арт.7880"
    [2]=>
    string(1) "1"
    [3]=>
    NULL
    [4]=>
    string(3) "png"
    [5]=>
    int(1372269874)
  }
}

这篇关于如何正确替换数组中的value元素?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆