PHP two-dimensional array identical key name add

Source: Internet
Author: User

PHP two-dimensional array same key name add

Array

(

[UID] => 19

[PID] => Array

(

[0] => 91

[1] => 81

)

[Price] => Array

(

[0] => 6

[1] => 14

)

[Pnum] => Array

(

[0] => 1

[1] => 1

)

)

To find the value of the same key name as the sum of the values (price added) the number of array bars is indeterminate

------Solution--------------------

$ar = Array (

' UID ' => 19,

' PID ' => Array (

0 => 91,

1 => 81,

),

' Price ' => Array (

0 => 6,

1 => 14,

),

' Pnum ' => Array (

0 => 1,

1 => 1,

),

);

$r = Array_map (function ($t) {

Return Is_array ($t)? Array_sum ($t): $t;

}, $ar);

Print_r ($R);

Array

(

[UID] => 19

[PID] => 172

[Price] => 20

[Pnum] => 2

)

------Solution--------------------

You can also use foreach directly.

$ar = Array (

' UID ' => 19,

' PID ' => Array (

0 => 91,

1 => 81,

),

' Price ' => Array (

0 => 6,

1 => 14,

),

' Pnum ' => Array (

0 => 1,

1 => 1,

),

);

foreach ($ar as $k => $v) {

$arr [$k] = Is_array ($v)? Array_sum ($v): $v;

}

Print_r ($arr);

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.