如何获取数组中的特定字段值?

时间:2017-04-26 10:15:27

标签: php

如何从数组中获取特定的字段值?我试过以下

            $studentarray2 =array();
            $studentarray2 = $cursor;
            echo  $key = array_search('student_id', $studentarray2); 

它无法正常工作!!!

  $studentarray2 contains 

         array(49) { ["_id"]=> object(MongoId)#10 (1) { ["$id"]=> string(24) "5715e59399fbad983700002b" } ["student_id"]=> float(22) ["registration_temp_perm_no"]=> string(5) "54321" ["roll_no"]=> string(2) "18" --- }

我正在尝试从上面的数组中获取student_id字段,在此示例中为22。

请帮助!!!

1 个答案:

答案 0 :(得分:0)

我会尝试$studentarray2['_id']->student_id