i have array with multiple array values i want to form new array in existing array values ,if plotting type same it return single array and calulate Time of same plotting time.
Actual Array:
(
[0] => Array
(
[Time] => 00:45
[PlottingType] => Research
)
[1] => Array
(
[Time] => 00:45
[PlottingType] => admin
)
[2] => Array
(
[Time] => 00:45
[PlottingType] => admin
)
[3] => Array
(
[Time] => 00:45
[PlottingType] => Research
)
[4] => Array
(
[Time] => 00:30
[PlottingType] => Research
)
)
Expected Array:
Array
(
[0] => Array
(
[Time] => 01:30
[PlottingType] => Research
)
[1] => Array
(
[Time] => 01:30
[PlottingType] => admin
)
)
Calulate same plotting type time into single index into single array.so please suggest appropriate solution.
It is possible to play with
strtotime
anddate
, but I did not want to, so the code is slightly longer. If you want to remove final keys from the result - apply functionarray_values
to it.Result
ps: and another way
Here I used minutes as seconds and hours as minutes, so the answer could have more than 24 hours, up to 60.
pps: ok, you can not assign it to the variable by yourself, I'll write it down for you