0

我从 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";
}
4

1 回答 1

1

我认为您正在寻找的是$event->content. 查看Zend_GData catelendar API 手册

于 2010-01-29T14:11:49.710 回答