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