Home  >  Article  >  Backend Development  >  PHP 数组,该如何处理

PHP 数组,该如何处理

WBOY
WBOYOriginal
2016-06-13 12:33:51690browse

PHP 数组
Array
(
    [0] => pid=2
    [1] => action=save
    [2] => 9=a
    [3] => 10=a
    [4] => 14=a
    [5] => 20=a
    [6] => 15=a
    [7] => 15=b
    [8] => 21=a
    [9] => 21=b
    [10] => 16=c
    [11] => 16=d
    [12] => 19=c
    [13] => 19=d
    [14] => 17=we
    [15] => 22=keywork
    [16] => 18=you
    [17] => 23=thanks 
)

上面数组,如何把它转成下面样子:

Array
(
    [0] => pid=2
    [1] => action=save
    [2] => 9=a
    [3] => 10=a
    [4] => 14=a
    [5] => 20=a
    [6] => 15=ab
    [7] => 21=ab
    [8] => 16=cd
    [9] => 19=cd
    [10] => 17=we
    [11] => 22=keywork
    [12] => 18=you
    [13] => 23=thanks 
)

PHP数组
Statement:
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