I have two arrays one is like-
Array
(
[0] => Array
(
[student_id] => 2
[attendance_type] => leave
)
[1] => Array
(
[student_id] => 3
[attendance_type] => absent
)
)
and other one is -
Array
(
[0] => Array
(
[attendance_id] => 4
[student_id] => 2
)
)
From the first array I need to take attendance_type with correspond student_id, so I'm trying to pick key from the array first then attendacnce_type. How it possible??