我正在尝试从数组调用 previous_position_1_name 获取特定对象,现在在我的刀片中
{{$ jobseeker - >求职者[ 'Myprevious_position_1']}}
它输出json数组,如:
{
"id": 3,
"previous_position_1_name": "QC",
"created_at": null,
"updated_at": null
}
我只想获得 previous_position_1_name 列 QC 。 请指导我。
答案 0 :(得分:1)
你可以使用json_decode,然后在这种情况下获取你想要的某个对象,它的previous_position_1_name。
//Decode the json so you can access the objects.. (array)
$json = json_decode($jobseeker,true);
//Access the object you want
$previous_position_1_name = $json['previous_position_1_name'];