快速业务通道

用XPath在PHP Web站点中显示Google Calendar事件

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-22
max-results=25&
singleevents=true&
orderby=starttime&
start-min=2007-05-22T09%3A58%3A47-04%3A00&
start-max=2007-11-06T09%3A58%3A47-04%3A00

用 PHP 解析 Google Calendar 摘要

既然已经讨论了 Google Calendar 事件摘要的元素和如何查询摘要以获得感兴趣的条目,接下来将探 讨解析摘要和在页面中显示摘要的方法。PHP 提供了若干个可用于检索事件条目列表和提取每个事件的标 题、日期、时间和位置的 XML API。首先将从文档对象模型(Document Object Model,DOM)API 开始。

用 DOM 解析摘要

XML DOM API 是一个标准的 XML 解析 API,而且它最常用于编写 XML 应用程序。DOM API 的用法不 在本文讨论的范围内,但是我将详细介绍解析 Google Calendar 事件摘要的示例程序,并说明 DOM API 的一些优点和缺点。

XML DOM API 的优点之一是速度很快。它将把整个 XML 文档装载到内存中,并且从 XML 文档中检索 元素全都在内存中进行。不过这样做对于大型的 XML 文件来说效率很低,它只适用于 2 MB 或 3 MB 的 XML 文件。

XML DOM API 的另一个优点是可读性。用 DOM 解析 XML 包含用于打开 XML 文档和从层次结构样式的 文档中检索特定元素的命令。它几乎就象英语一样,告诉 PHP 去 “获得带有 ‘entry’ 标记名称的元 素”。清单 5 演示了这些内容。

清单 5. 用 DOM API 解析 Google Calendar 事件摘要

<?php
    $confirmed = ''http://schemas.google.com/g/2005#event.confirmed'';
    $three_months_in_seconds = 60 * 60 * 24 * 28 * 3;
    $three_months_ago = date("Y-m-d\Th:i:sP", time() - $three_months_in_seconds);
    $three_months_from_today = date("Y-m-d\Th:i:sP", time() + 

$three_months_in_seconds);
    $feed = "http://www.google.com/calendar/feeds/foss.sanjuan%40gmail.com/" .
        "public/full?orderby=starttime&singleevents=true&" .
        "start-min=" . $three_months_ago . "&" .
        "start-max=" . $three_months_from_today;
    $doc = new DOMDocument();
    $doc->load( $feed );
    $entries = $doc->getElementsByTagName( "entry" );
    foreach ( $entries as $entry ) {
        $status = $entry->getElementsByTagName( "eventStatus" );
        $eventStatus = $status->item(0)->getAttributeNode("value")-

>value;
        if ($eventStatus == $confirmed) {
            $titles = $entry->getElementsByTagName( "title" );
            $title = $titles->item(0)->nodeValue;
            $times = $entry->getElementsByTagName( "when" );
            $startTime = $times->item(0)->getAttributeNode("startTime")-

>value;
            $when = date( "l jS \o\f F Y - h:i A", strtotime( $startTime ) );
            $places = $entry->getElementsByTagName( "where" );
            $where = $places->item(0)->getAttributeNode("valueString")-

>value;
            print $title . "\n";
            print $when . " AST\n";
            print $where . "\n";
            print "\n";
        }
    }
?>

在这段代码样例中,将用所需的参数设置摘要 URL,打开摘要,然后获得 DOMNodeList 中的

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号