這是我正在使用的代碼,但它在大多數情況下確實返回空白。試圖向我的網站上顯示我的Twitter追隨者沒有運氣
<?php
$xml=file_get_contents('http://twitter.com/users/show.xml?screen_name=MyTwitterUsernameBla');
if (preg_match('/followers_count>(.*)</',$xml,$match)!=0) {
$count = $match[1];
}
echo $count;
?>
我想表明Twitter的追隨者在簡單的方式計算,沒有plugins..it是一個網站,而不是博客。
非常感謝你:)
不可思議的幫助!緩存的事情做了伎倆..我在網上搜索了一切爲了簡單的解決方案.. :) – 2010-10-12 16:50:51