PHP   发布时间:2022-04-04  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了php-使用youtube api显示SubscriberCount-xmlns解析大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

所有

我想使用其api显示youtube订阅者.
但是无法使PHP获取SubscriberCount.

这是api链接http://gdata.youtube.com/feeds/api/users/worshipuk

结果

    <?xml version='1.0' encoding='UTF-8'?><entry xmlns='http://www.w3.org/2005/Atom' xmlns:media='http://search.yahoo.com/mRSS/' xmlns:gd='http://scheR_604_11845@as.google.com/g/2005' xmlns:yt='http://gdata.youtube.com/scheR_604_11845@as/2007'><id>http://gdata.youtube.com/Feeds/api/users/worshipuk</id><published>2009-05-22T10:57:17.000-07:00</published><updated>2011-12-07T19:45:47.000-08:00</updated><category scheR_604_11845@e='http://scheR_604_11845@as.google.com/g/2005#kind' term='http://gdata.youtube.com/scheR_604_11845@as/2007#userProfile'/><category scheR_604_11845@e='http://gdata.youtube.com/scheR_604_11845@as/2007/chAnneltypes.cat' term='Musician'/><title type='text'>worshipuk</title><content type='text'>'Worship make brilliantly moody, haunTing music. Soaring vocals and tense, synth-laden atmospherics combine with subtle rhythmic complexities, creaTing very mood driven, dark and broody sounds with bursts of light. A new project, the band spent a month of wriTing and recording (self-producing) at a small residential studio in Norway. A bright, if slightly dark future, awaits.' - RockFeedBACk

http://www.facebook.com/worshipuk
http://www.myspace.com/worshipuk
http://www.twitter.com/worshipuk</content><link rel='alternate' type='text/html' href='http://www.youtube.com/profile?user=worshipuk'/><link rel='http://gdata.youtube.com/scheR_604_11845@as/2007#featured-video' type='application/atom+xml' href='http://gdata.youtube.com/Feeds/api/videos/cWZPWXWpa4I'/><link rel='related' type='text/html' href='http://www.worshipuk.com'/><link rel='self' type='application/atom+xml' href='http://gdata.youtube.com/Feeds/api/users/worshipuk'/><author><name>worshipuk</name><uri>http://gdata.youtube.com/Feeds/api/users/worshipuk</uri></author><yt:age>110</yt:age><yt:description>'Worship make brilliantly moody, haunTing music. Soaring vocals and tense, synth-laden atmospherics combine with subtle rhythmic complexities, creaTing very mood driven, dark and broody sounds with bursts of light. A new project, the band spent a month of wriTing and recording (self-producing) at a small residential studio in Norway. A bright, if slightly dark future, awaits.' - RockFeedBACk

http://www.facebook.com/worshipuk
http://www.myspace.com/worshipuk
http://www.twitter.com/worshipuk</yt:description><gd:FeedLink rel='http://gdata.youtube.com/scheR_604_11845@as/2007#user.favorites' href='http://gdata.youtube.com/Feeds/api/users/worshipuk/favorites' countHint='2'/><gd:FeedLink rel='http://gdata.youtube.com/scheR_604_11845@as/2007#user.contacts' href='http://gdata.youtube.com/Feeds/api/users/worshipuk/contacts' countHint='0'/><gd:FeedLink rel='http://gdata.youtube.com/scheR_604_11845@as/2007#user.inBox' href='http://gdata.youtube.com/Feeds/api/users/worshipuk/inBox'/><gd:FeedLink rel='http://gdata.youtube.com/scheR_604_11845@as/2007#user.playlists' href='http://gdata.youtube.com/Feeds/api/users/worshipuk/playlists'/><gd:FeedLink rel='http://gdata.youtube.com/scheR_604_11845@as/2007#user.subscriptions' href='http://gdata.youtube.com/Feeds/api/users/worshipuk/subscriptions' countHint='0'/><gd:FeedLink rel='http://gdata.youtube.com/scheR_604_11845@as/2007#user.uploads' href='http://gdata.youtube.com/Feeds/api/users/worshipuk/uploads' countHint='3'/><gd:FeedLink rel='http://gdata.youtube.com/scheR_604_11845@as/2007#user.newsubscriptionvideos' href='http://gdata.youtube.com/Feeds/api/users/worshipuk/newsubscriptionvideos'/><yt:firstName>Worship</yt:firstName><yt:gender>m</yt:gender><yt:LOCATIOn>GB</yt:LOCATIOn><yt:statistics lastWeBACcess='2011-11-10T03:33:40.000-08:00' subscriberCount='62' videoWatchCount='0' viewCount='1653' @R_522_10586@lUploadViews='25141'/><media:thumbnail url='http://i1.ytimg.com/i/lwjfgavcsk4RwuI3yf0eJA/1.jpg?v=c8ce1f'/><yt:username>worshipuk</yt:username></entry>

我正在使用此PHP代码来解析此xml结果以获取SubscriberCount:62

<?PHP
$det = simplexml_load_file('http://gdata.youtube.com/Feeds/api/users/worshipuk');

echo "<pre>";
print_r($det);
?>

如何使用PHP使用此api获取subscribeCount?

解决方法:

我有同样的问题.使用下面的代码,我确定您会获得SubscriberCount.

$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;  

大佬总结

以上是大佬教程为你收集整理的php-使用youtube api显示SubscriberCount-xmlns解析全部内容,希望文章能够帮你解决php-使用youtube api显示SubscriberCount-xmlns解析所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: