0

我正在尝试使用 cURL 阅读 twitter 时间线,但由于某种原因,我无法使用 preg_match。这是我当前的代码,您发现任何问题吗?

$feed = "http://twitter.com/statuses/user_timeline/antonpug.xml?count=3";

function parse_feed($feed) {
    //$matches = Array();
    preg_match_all("/<status>(.*?)<\/status>/", $content[0], $matches);

    return $matches[0];

    //$stepOne = explode("<content type=\"html\">", $feed);
    //$stepTwo = explode("</content>", $stepOne[1]);
    //$tweet = $stepTwo[0];
    //$tweet = htmlspecialchars_decode($tweet,ENT_QUOTES);
    //return $tweet;
}

//Initialize the Curl session
$ch = curl_init();
//Set curl to return the data instead of printing it to the browser.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//Set the URL
curl_setopt($ch, CURLOPT_URL, $feed);
//Execute the fetch
$twitterFeed = curl_exec($ch);
//Close the connection
curl_close($ch);

//$twitterFeed = file_get_contents($feed);
echo(parse_feed($twitterFeed));
4

1 回答 1

0

我想更好的主意是使用 simplexml 来处理 XML 和对象一样。您的功能将类似于

function parse_feed($feed) {
    $xml = simplexml_load_string($feed);
    if(isset($xml->status)) {
        return $xml->xpath('status');
    } else {
        return false;
    }
}

它将返回 simplexml 对象。

于 2012-08-12T21:24:32.120 回答