Answer the question
In order to leave comments, you need to log in
How to display the number of subscribers of a group?
function vk_fans_count($vkID) {
$json_string = file_get_contents('https://api.vk.com/method/groups.getMembers?group_id=айдишник&count=0&fields=count&access_token=здесь токен&v=5.73');
$json = json_decode($json_string, true);
return $json['response'][0]['count'];
}
{"response":{"count":10344,"items":[]}}
echo vk_fans_count('айдишник');
Answer the question
In order to leave comments, you need to log in
Your hands should be torn off for file_get_contents .
function vk_fans_count($group_id) {
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => 'https://api.vk.com/method/groups.getMembers',
CURLOPT_POST => true,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_SSL_VERIFYHOST => false,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_POSTFIELDS => [
'group_id' => $group_id,
'count' => 0,
'v' => 5.73
]
]);
$response = json_decode(curl_exec($curl))->response;
curl_close($curl);
return $response->count;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question