Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
{"response":[{"id":55xxxxx,"first_name":"Сергей","last_name":"Сергеев","sex":2,"photo_max_orig":"url"}]}
$user = json_decode($info, true); $photo = $user['photo_max_orig'];
Notice: Undefined index: photo_max_orig
$user = json_decode($info, true); $photo = $user->{'photo_max_orig'};
Array ( [response] => Array ( [0] => Array ( [id] => 55xxxx [first_name] => Сергей [last_name] => Сергеев [sex] => 2 [screen_name] => id55xxxx [bdate] => 16.3.1994 [photo_max_orig] => url ) ) )
<pre><?=var_dump($user)?></pre> <pre><?=print_r($user)?></pre>
$user = json_decode($info, true); $photo = $user['response'][0]['photo_max_orig'];