How can I sum array values by unique key?

Posted by AndrewSpilak on Stack Overflow See other posts from Stack Overflow or by AndrewSpilak
Published on 2010-03-24T16:10:38Z Indexed on 2010/03/24 17:33 UTC
Read the original article Hit count: 102

Filed under:

For example

array (
product1_quantity => 5,
product1_quantity => 1,
product2_quantity => 3,
product2_quantity => 7,
product3_quantity => 2,
)

with result:

product1_quantity - 6, 
product2_quantity - 10, 
product3_quantity - 2

Thanx!


sorry, guys

stupid example, instead this really

Array ( [0] => Array ( [product1] => 7 ) [1] => Array ( [product1] => 2 ) [2] => Array ( [product2] => 3 ) )

?

© Stack Overflow or respective owner

Related posts about perl