I have a array in php that is like this
Array
(
[0] => Array
(
[user] => 1
)
)
Array
(
[0] => Array
(
[vote] => 3.0
)
[1] => Array
(
[vote] => 5.0
)
)
I need to add together the values of vote ( 3.0 + 5.0 = 8) in the array
what is the best way to do this in php