array (0 => stdClass::__set_state(array(
'information' =>
stdClass::__set_state(array(
'url' => 'https://www.website.com/in/thing-again-3424/',
'email' => NULL,
'picture' => 'https://234324.234324.com/mpr/mpr/shrinknp_400_400/234234.jpg',
'fullname' => 'James Smith',
'headline' => 'Senior',
'company' => 'Boots Ltd',
'school' => 'Fake University',
'location' => 'Fake, United Kingdom',
'summary' => 'Did some stuff',
'emailScore' => 0,
)),
'experiences' =>
array (
0 =>
stdClass::__set_state(array(
'href' => '/thebest/numbers/',
'role' => 'Programmer',
'companyName' => 'Boots Ltd',
'dateRange' => 'Mar 2017 – Present',
'location' => 'london',
这个数据是我的js中的一个对象,它作为一个表单传递给我的php服务器,
我用$data = json_decode($request->profile);
以上结构就是它的结构
我的问题是如何抓住单个元素,例如图片
的内容 $data->information->picture
提醒,这是在laravel。