当前位置: 首页>>代码示例>>PHP>>正文


PHP Zend_Gdata_App_Feed::transferFromXML方法代码示例

本文整理汇总了PHP中Zend_Gdata_App_Feed::transferFromXML方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Gdata_App_Feed::transferFromXML方法的具体用法?PHP Zend_Gdata_App_Feed::transferFromXML怎么用?PHP Zend_Gdata_App_Feed::transferFromXML使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend_Gdata_App_Feed的用法示例。


在下文中一共展示了Zend_Gdata_App_Feed::transferFromXML方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testConvertFeedToAndFromString

 public function testConvertFeedToAndFromString()
 {
     $this->feed->transferFromXML($this->feedText);
     $feedXml = $this->feed->saveXML();
     $newFeed = new Zend_Gdata_App_Feed();
     $newFeed->transferFromXML($feedXml);
     $this->assertEquals(1, count($newFeed->entry));
     $this->assertEquals('dive into mark', $newFeed->title->text);
     $this->assertEquals('text', $newFeed->title->type);
     $this->assertEquals('2005-07-31T12:29:29Z', $newFeed->updated->text);
     $this->assertEquals('tag:example.org,2003:3', $newFeed->id->text);
     $this->assertEquals(2, count($newFeed->link));
     $this->assertEquals('http://example.org/', $newFeed->getAlternateLink()->href);
     $this->assertEquals('en', $newFeed->getAlternateLink()->hrefLang);
     $this->assertEquals('text/html', $newFeed->getAlternateLink()->type);
     $this->assertEquals('http://example.org/feed.atom', $newFeed->getSelfLink()->href);
     $this->assertEquals('application/atom+xml', $newFeed->getSelfLink()->type);
     $this->assertEquals('Copyright (c) 2003, Mark Pilgrim', $newFeed->rights->text);
     $entry = $newFeed->entry[0];
     $this->assertEquals('Atom draft-07 snapshot', $entry->title->text);
     $this->assertEquals('tag:example.org,2003:3.2397', $entry->id->text);
     $this->assertEquals('2005-07-31T12:29:29Z', $entry->updated->text);
     $this->assertEquals('2003-12-13T08:29:29-04:00', $entry->published->text);
     $this->assertEquals('Mark Pilgrim', $entry->author[0]->name->text);
     $this->assertEquals('http://example.org/', $entry->author[0]->uri->text);
     $this->assertEquals(2, count($entry->contributor));
     $this->assertEquals('Sam Ruby', $entry->contributor[0]->name->text);
     $this->assertEquals('Joe Gregorio', $entry->contributor[1]->name->text);
     $this->assertEquals('xhtml', $entry->content->type);
 }
开发者ID:omusico,项目名称:sugar_work,代码行数:30,代码来源:FeedTest.php


注:本文中的Zend_Gdata_App_Feed::transferFromXML方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。