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


PHP Curl::pull方法代碼示例

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


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

示例1: index

 public function index()
 {
     //		$yql = YQL::factory();
     $result = Curl::pull('http://query.yahooapis.com/v1/public/yql?q=select%20description%20from%20rss%20where%20url%3D%27http%3A%2F%2Fsam.clark.name%2Frss%2F%27&format=xml');
     $xml = simplexml_load_string($result);
     var_dump($xml);
 }
開發者ID:sydlawrence,項目名稱:SocialFeed,代碼行數:7,代碼來源:test.php

示例2: get_xml_entries

 public static function get_xml_entries($url)
 {
     $data = simplexml_load_string(Curl::pull($url));
     $arr = array();
     foreach ($data->channel->item as $item) {
         $arr[] = $item;
     }
     return $arr;
 }
開發者ID:sydlawrence,項目名稱:SocialFeed,代碼行數:9,代碼來源:zest.php

示例3: check_for_feed

 /**
  * check_for_feed function.
  * 
  * @access public
  * @param string $url
  * @return boolean
  */
 public function check_for_feed($url)
 {
     $query = "select title,href from html where url='" . $url . "' and xpath='//link' and type='application/rss+xml'";
     $q = urlencode($query);
     $url2 = 'http://query.yahooapis.com/v1/public/yql?q=' . $q . '&format=json';
     $data = Curl::pull($url2);
     $data = json_decode($data);
     if (!isset($data->error) && isset($data->query->results)) {
         if (is_array($data->query->results->link)) {
             foreach ($data->query->results->link as $link) {
                 if (isset($link->href) && strstr($link->href, 'http://') != FALSE) {
                     $this->feeds[$link->title] = array("profile" => $url, "feed" => str_replace('&lang', '&lang', $link->href));
                 }
             }
         } else {
             if (isset($data->query->results->link->href) && strstr($data->query->results->link->href, 'http://') != FALSE) {
                 $this->feeds[$data->query->results->link->title] = array("profile" => $url, "feed" => str_replace('&lang', '&lang', $data->query->results->link->href));
             }
         }
         return TRUE;
     } else {
         return FALSE;
     }
 }
開發者ID:sydlawrence,項目名稱:SocialFeed,代碼行數:31,代碼來源:Site_scraper.php


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