使用coreylib显示Google日历Feed事件

时间:2013-10-23 22:05:23

标签: php xml parsing google-calendar-api

在过去的四个小时里,我一直在研究如何解析xml并回显Google日历Feed。我最初使用this tutorial轻松完成了这个,但遇到了命名空间的问题,我可以轻松打印出事件的摘要和标题但我无法打印出startTime和endTime,因为在他们使用的Feed {{1我发现coreylib并且听到了很多关于它的简单性的赞美,但我仍然无法弄清楚如何做到这一点。

有人可以指点我这个方向,或者给我一个示例代码,从“完整”谷歌供稿(http://www.google.com/calendar/feeds/developer-calendar@google.com/public/full - 一个示例供稿)中检索一些事件。即使它只是检索了事件的标题和startTime,这将足以使用。

通常我发布代码,但在这种情况下,我几乎没有,因为我被困在那么糟糕哈哈。 先感谢您!

2 个答案:

答案 0 :(得分:4)

$email = "yourEmail";
$url = "http://www.google.com/calendar/feeds/".$email."/public/full";
$xml = file_get_contents($url);

$feed = simplexml_load_string($xml);
$ns=$feed->getNameSpaces(true);

foreach ($feed->entry as $entry) {
    $when=$entry->children($ns["gd"]);
    $when_atr=$when->when[0]->attributes();
    $start=$when_atr['startTime'];
    $end=$when_atr['endTime'];
    $title=$entry->title;

    echo "<p>".$start." - ".$end." ".$title."</p>";
}

如果有更多人搜索并找到与此类似的东西,如果每个人都需要类似的东西,那么它的效果非常好。的Wooo!

答案 1 :(得分:2)

根据您的上述内容,我可以对其进行修改以调整样式。

PHP

<?php 
$email = "your public calendar address email";
$url = "http://www.google.com/calendar/feeds/".$email."/public/full";
$xml = file_get_contents($url);

$feed = simplexml_load_string($xml);
$ns=$feed->getNameSpaces(true);

foreach ($feed->entry as $entry) {
    $when=$entry->children($ns["gd"]);
    $when_atr=$when->when[0]->attributes();

    $title=$entry->title;
    echo "<div class='eventTitle'>".$title . "</div>";

    $start = new DateTime($when_atr['startTime']);
    echo "<div class='eventTime'>".$start->format('D F jS, g:ia') . " to ";    

    $end = new DateTime($when_atr['endTime']);
    echo $end->format('g:ia')."</div>" . '<br />' ;    



}

 ?>

CSS

<style>

 .eventTime {
    color:#0CF;
 }

 .eventTitle {
    color:#0FC; 
 }

 </style>

以下资源很有帮助:

DateDate and TimeExample @Glavić张贴。