I have an array like this. I need to add the total length of time in all the occurances of the array. so in the example below it will be 00:04:03 + 00:06:03 = 00:10:06
Array
(
[4894] => Array
(
[0] => Array
(
[Informative] => Array
(
[id] => 109
)
[jQuery] => Array
(
[length] => 00:04:03
[alignment] => 8
)
)
[1] => Array
(
[Informative] => Array
(
[id] => 110
)
[jQuery] => Array
(
[length] => 00:06:03
[alignment] => 8
)
)
how can I add length in the above array so that it still is a time and adds as time.
thanks
See it working