0

此代码应该显示我的 Google 日历 RSS 中的所有项目,但它将显示的帖子限制为大约 23 个:

http://james.cridland.net/code/google-calendar.html

我的 RSS 提要在这里:https ://www.google.com/calendar/feeds/ta624s0k5sf002ji485o6d0bvg%40group.calendar.google.com/private-9f18d335ed346643800c76d0c96e286c/basic

4

1 回答 1

1

除非您更改了这行代码:

// ...and how many you want to display (leave at 999 for everything)
$items_to_show=999;

它应该包含 999 个条目(或它提到的所有内容)。

这里的脚本似乎有错误(在 max_results 之后缺少“= 符号”)。

替换为:

// Form the XML address.
$calendar_xml_address = str_replace("/basic","/full?singleevents=true&futureevents=true&max-results=".$items_to_show."&orderby=starttime&sortorder=a",$calendarfeed); //This goes and gets future events in your feed.
于 2012-07-14T14:26:10.417 回答