Zend gdata 日历 - 查找创建的事件和编辑的事件元素

发布于 2024-11-15 09:37:34 字数 231 浏览 4 评论 0原文

我正在从 Zend Gdata 提要中查找数据,该数据为我提供了:

  • 事件创建的日期 事件
  • 最近编辑的日期

我希望以类似于以下方式的形式找到这些变量我得到了事件 ID:

pr($event->id->text);

我确定它是文档,如果有人可以向我指出提要中所有可用元素的图表,那就太好了!谢谢!

I'm having a touch time finding the data from the Zend Gdata feed that gives me:

  • The date that the event was created
  • The date of the most recent edit to the event

I'm hoping to find these variables in a form similar to how I get the event ID:

pr($event->id->text);

I'm sure it is documents, and if anyone can point me to a chart of all the elements available in the feed, that would be great! Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怪我太投入 2024-11-22 09:37:34

啊,明白了:

  pr($event->published->text);  //when event was first published
  pr($event->updated->text);    //when event was last updated.

http://code.google.com/apis/ gdata/docs/2.0/elements.html

Ah-got it:

  pr($event->published->text);  //when event was first published
  pr($event->updated->text);    //when event was last updated.

http://code.google.com/apis/gdata/docs/2.0/elements.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文