So i have array which is something like this
Array (323)
0 => Array (2)
plotis => "2000"
aukstis => "1909"
1 => Array (2)
plotis => "2100"
aukstis => "1909"
2 => Array (2)
plotis => "2200"
aukstis => "1909"
3 => Array (2)
plotis => "2300"
aukstis => "1909"
4 => Array (2)
plotis => "2400"
aukstis => "1909"
5 => Array (2)
plotis => "2500"
aukstis => "1909"
and so on
I need to make 2 arrays 1 should have all plotis value and other aukstis value . But the problem is its first time i see array in array ( new to php )
plotisentry of the first array with$arr[0]['plotis'].foreachmight prove to be faster thanarray_*functions.