<?php
$search_get = file_get_contents('https://api.vk.com/method/groups.search?q=Music&offset=3&count=2&access_token='.$token.'&sort=0&fields=id,name,photo_200&v='.$v);
$search = json_decode($search_get, true);
$result = $search['response'][0];
echo $result['id'];
?>
$result = $search['response']['items'][0];
echo $result['id']