Twitter feed ve ekran bilgiler PHP & kullanarak alın

0 Cevap php

With PHP preg_match_all, get value of href, ben Twitter'ın besleme bazı informayions almaya çalışıyorum: Bu tehdide dayalı.

First, here is the feed url (for testing purpose): Tweet's feed Next, here is my code:

function parse_feed($process) {
        $xml  = @simplexml_load_string($process);
        $findTweet = $xml['entry'];
    return $findTweet;
}

$username = 'tweet';
$feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&rpp=2";

$feed = file_get_contents($feed);
    //echo $feed;
print_r(parse_feed($feed));

Ben daha önce SimpleXML hiç kullanmadım ve XML ile hiç çalışmamış.

Birisi lütfen bana yardımcı olabilir misiniz?

0 Cevap