Home > Backend Development > PHP Tutorial > php多维数组内部合并

php多维数组内部合并

WBOY
Release: 2016-06-06 20:35:55
Original
1018 people have browsed it

<code>array(3) {
  [0] => array(9) {
    [0] => string(1) "1"
    [1] => string(3) "175"
    [2] => string(1) "2"
    [3] => string(2) "22"
    [4] => string(2) "22"
    [5] => string(2) "-1"
    [6] => string(1) "0"
    [7] => string(11) "小份+0元"
    [8] => int(44)
  }
  [1] => array(9) {
    [0] => string(1) "1"
    [1] => string(3) "175"
    [2] => string(1) "3"
    [3] => string(2) "22"
    [4] => string(2) "22"
    [5] => string(2) "-1"
    [6] => string(1) "0"
    [7] => string(11) "小份+0元"
    [8] => int(66)
  }
  [3] => array(9) {
    [0] => string(1) "1"
    [1] => string(3) "175"
    [2] => string(1) "2"
    [3] => string(2) "22"
    [4] => string(2) "22"
    [5] => string(2) "-1"
    [6] => string(1) "0"
    [7] => string(11) "小份+0元"
    [8] => int(44)
  }
}
</code>
Copy after login
Copy after login

请问如何把一样的一维数组合并
并且如果两者一样 把 [2] => string(1) "2"的值相加后的值作为新的值.键不变

回复内容:

<code>array(3) {
  [0] => array(9) {
    [0] => string(1) "1"
    [1] => string(3) "175"
    [2] => string(1) "2"
    [3] => string(2) "22"
    [4] => string(2) "22"
    [5] => string(2) "-1"
    [6] => string(1) "0"
    [7] => string(11) "小份+0元"
    [8] => int(44)
  }
  [1] => array(9) {
    [0] => string(1) "1"
    [1] => string(3) "175"
    [2] => string(1) "3"
    [3] => string(2) "22"
    [4] => string(2) "22"
    [5] => string(2) "-1"
    [6] => string(1) "0"
    [7] => string(11) "小份+0元"
    [8] => int(66)
  }
  [3] => array(9) {
    [0] => string(1) "1"
    [1] => string(3) "175"
    [2] => string(1) "2"
    [3] => string(2) "22"
    [4] => string(2) "22"
    [5] => string(2) "-1"
    [6] => string(1) "0"
    [7] => string(11) "小份+0元"
    [8] => int(44)
  }
}
</code>
Copy after login
Copy after login

请问如何把一样的一维数组合并
并且如果两者一样 把 [2] => string(1) "2"的值相加后的值作为新的值.键不变

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template