Wednesday, 13 April 2011

Get Twitter Followers

$twit = file_get_contents('http://twitter.com/users/show/USERNAME.xml');
            echo "<pre>";
            print_r($twit);
            $begin = '<followers_count>'; $end = '</followers_count>';
            $page = $twit;
            $parts = explode($begin,$page);
            $page = $parts[1];
            $parts = explode($end,$page);
            $tcount = $parts[0];
            if($tcount == '') { $tcount = '0'; }
           echo '<b> '.$tcount.' </b> Followers';

No comments:

Post a Comment