重複の可能性:
PHPでループが実行される回数を制限する
ツイートのフィードを読み取る foreach ループを中断しようとしています - 3 つのツイートの後。私がすでに持っているコードを補足する必要があるコードを誰かが手伝ってくれませんか。
<?php
function getTweets($Username) {
$feedURL = "http://twitter.com/statuses/user_timeline.rss?screen_name=" . $username;
$content = file_get_content($feedURL);
$tweets = new SimpleXMLElement ($content);
foreach ($tweets->channel->item as $tweet) {
echo "<ul>";
echo "<li>$tweet->description<br />$tweet->pubDate</li>";
echo "</ul>";
}
?>
}
よろしくお願いします。