0

Twitter のタイムラインを cURL で読み込もうとしているのですが、なぜか 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

オブジェクトと同じように XML を操作するには、simplexml を使用する方がよいと思います。あなたの機能は次のようになります

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 に答える