Answer the question
In order to leave comments, you need to log in
How to get key value in multidimensional array?
Constantly different arrays of the form come:
Array
(
[37:10] => Array
(
[VALUE] => 55.75303026534,37.463532104492
)
)
Array
(
[37:05] => Array
(
array
(
[VALUE] => 55.75303026534,37.463532104492
)
)
)
Answer the question
In order to leave comments, you need to log in
php.net/manual/en/function.array-walk-recursive.php
array_walk_recursive (&$data, function($val, $key) {
if ($key === "VALUE") echo $val;
})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question