我在我的網站上顯示博客RSS提要,我的一個博客很大,但只有2-3行描述應顯示在我的網站上,我該怎麼做?的magpierss使用 - 0.72獲取RSS 我的代碼,請幫我在此先感謝關於限制rss提要內容
Am在
require_once('rss_fetch.inc');
$url = 'http://rajs-creativeguys.blogspot.com/feeds/posts/default?alt=rss';
$rss = fetch_rss($url);
foreach ($rss->items as $i => $item) {
$title = strtoupper ($item['title']);
$url = $item['link'];
$desc = $item['description'];
$date = $item['pubdate'];
echo "<div class=\"blog\"><a target=\"_blank\" href=$url><h1>$title</h1>$desc<br/><br/><em>DATED : $date <br/><br/></em></a></div> ";
}
而且博客地址是http://rajs-creativeguys.blogspot.in/
那你試試? – Cfreak
使用搜索。 http://stackoverflow.com/questions/965235/how-can-i-truncate-a-string-in-php – MDrollette