Zend GData,谷歌日历API问题

时间:2010-01-29 13:51:39

标签: php zend-gdata

我从IBM开发网站上阅读了该教程。 http://www.ibm.com/developerworks/xml/library/x-googleclndr/#resources

我测试成功了。现在我不知道如何在我的活动视图页面插入事件描述。基于以下代码。仅显示事件ID,事件标题。是否有像 event-> description 这样的参数?感谢。

示例代码文件 view.php

中的以下代码
foreach ($feed as $event) {
  echo "<li>\n";
  echo "<h2>" . stripslashes($event->title) . "</h2>\n";
  echo stripslashes($event->summary) . " <br/>\n";
  $id = substr($event->id, strrpos($event->id, '/')+1);
  echo "<a href=\"edit.php?id=$id\">edit</a> | ";
  echo "<a href=\"delete.php?id=$id\">delete</a> <br/>\n";
  echo "</li>\n";
}

1 个答案:

答案 0 :(得分:1)

我认为您所寻找的是$event->content。看看Manual for Zend_GData catelendar API