當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Service::getData方法代碼示例

本文整理匯總了PHP中Service::getData方法的典型用法代碼示例。如果您正苦於以下問題:PHP Service::getData方法的具體用法?PHP Service::getData怎麽用?PHP Service::getData使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Service的用法示例。


在下文中一共展示了Service::getData方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getData

 /**
  * @return array of SimplePie feed item objects
  */
 public function getData()
 {
     static $id = 0;
     $data = parent::getData();
     if (!$data) {
         return false;
     }
     return $data->get_items();
 }
開發者ID:msqueeg,項目名稱:PubwichFork,代碼行數:12,代碼來源:Feed.php

示例2: widget

 /**
  * Main process of widget
  * 
  * @param array $args
  * @param array $instance
  */
 public function widget($metric, $url = null)
 {
     $username = Engine_Api::_()->getApi('settings', 'core')->getSetting('ynblog.username');
     $password = Engine_Api::_()->getApi('settings', 'core')->getSetting('ynblog.password');
     $dimension = 'url';
     $oRequest = new Request(new Authentication($username, $password), new Metric($metric), new Dimension($dimension), Ynblog_Api_Addthis::getServiceQuery());
     $oService = new Service($oRequest);
     $response = $oService->getData();
     echo Ynblog_Api_Addthis::getContent($response, $url);
     return Ynblog_Api_Addthis::getContent($response, $url);
 }
開發者ID:hoalangoc,項目名稱:ftf,代碼行數:17,代碼來源:Addthis.php

示例3: getData

 public function getData()
 {
     return parent::getData();
 }
開發者ID:pcdinh,項目名稱:pubwich,代碼行數:4,代碼來源:Readernaut.php

示例4: getData

 public function getData()
 {
     $data = parent::getData();
     return $data->channel->item;
 }
開發者ID:msqueeg,項目名稱:PubwichFork,代碼行數:5,代碼來源:Goodreads.php

示例5: getData

 /**
  * @return SimpleXMLElement
  */
 public function getData()
 {
     $data = parent::getData();
     return $data->entry;
 }
開發者ID:remiprev,項目名稱:pubwich,代碼行數:8,代碼來源:Atom.php

示例6: getData

 /**
  * Overcharge parent::getData()
  * @return SimpleXMLElement
  */
 public function getData()
 {
     $data = parent::getData();
     return $data->photos->photo;
 }
開發者ID:xurble,項目名稱:pubwich,代碼行數:9,代碼來源:Flickr.php

示例7: getData

 /**
  * @return array
  */
 public function getData()
 {
     return parent::getData()->repository;
 }
開發者ID:pcdinh,項目名稱:pubwich,代碼行數:7,代碼來源:Github.php

示例8: getData

 public function getData()
 {
     return parent::getData()->data->children;
 }
開發者ID:msqueeg,項目名稱:PubwichFork,代碼行數:4,代碼來源:Reddit.php

示例9: getData

 /**
  * @return array
  */
 public function getData()
 {
     return parent::getData()->gist;
 }
開發者ID:xurble,項目名稱:pubwich,代碼行數:7,代碼來源:Github.php


注:本文中的Service::getData方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。