У меня такая же проблема. используйте код ниже, я уверен, что вы получите свой абонентский счет.
$name = 'worshipuk';
$url = 'http://gdata.youtube.com/feeds/api/users/'. urlencode($name).'?alt=json';
$json = @file_get_contents($url); // Naughty @-operator, use proper error handling
$data = json_decode($json, TRUE);
$count = (int) $data['entry']['yt$statistics']['subscriberCount'];
echo $count;