$(document).on('click', '.i_category', function(e){
e.preventDefault();
var get_cat_id = $(this).data('id-cat');
$.ajax({
type: 'POST',
url: '/admin/services/act/get-sub-categories',
dataType: 'json',
data: {
"_token": "{{ csrf_token() }}",
get_cat_id: get_cat_id
},
success: function(data) {
if (!data.type)
return; // data.type - не существует
if (data.type == 111)
console.log("type равен 111");
else if (data.type === 222)
console.log("type равен 222");
}
});
});
$token = "токен";
$id = "id юзверя, можно и screen name";
$arr = json_decode(file_get_contents('https://api.vk.com/method/users.get?user_ids=&fields=photo_100,photo_200,counters,city,status,bdate,career,sex&access_token='.$token.'&v=5.92'), true);
$arr = $arr["response"][0]; // Что бы каждый раз не прописывать при получение данных. То-есть что бы получить photo_100 нужно написать $arr["photo_100"], а не $arr["response"][0]["photo_100"].