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


PHP CHTTP::GET方法代碼示例

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


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

示例1: getSharedEmbedLink

 public function getSharedEmbedLink(array $fileData)
 {
     $accessToken = $this->getAccessToken();
     $fileId = $fileData['id'];
     $http = new CHTTP();
     $http->http_timeout = 10;
     if (!$http->GET("https://apis.live.net/v5.0/{$fileId}/embed?access_token=" . urlencode($accessToken))) {
         return false;
     }
     // error checking
     if ($http->status != "200") {
         return false;
     }
     $response = json_decode($http->result, true);
     if (preg_match('%src="(.*)"%iuU', $response['embed_html'], $m)) {
         return $m[1];
     }
     return false;
 }
開發者ID:DarneoStudio,項目名稱:bitrix,代碼行數:19,代碼來源:editskydrive.php

示例2: downloadFile

 public function downloadFile(array $fileData)
 {
     $accessToken = $this->getAccessToken();
     $id = $fileData['id'];
     $mimeType = $fileData['mimeType'];
     @set_time_limit(0);
     $http = new CHTTP();
     $http->http_timeout = 10;
     $http->SetAdditionalHeaders(array("Authorization" => "Bearer {$accessToken}"));
     if (!$http->GET('https://www.googleapis.com/drive/v2/files/' . $id)) {
         return false;
     }
     // access token expired, let's get a new one and try again
     if ($http->status == "401") {
         //todo: invalid credential response
         return false;
     }
     // error checking
     if ($http->status != "200") {
         return false;
     }
     $file = json_decode($http->result, true);
     $links = $file['exportLinks'];
     $link = empty($links[$mimeType]) ? '' : $links[$mimeType];
     if (!$link) {
         $link = $file['downloadUrl'];
     }
     $http = new CHTTP();
     $http->http_timeout = 10;
     $http->SetAdditionalHeaders(array("Authorization" => "Bearer {$accessToken}"));
     if (!$http->GET($link)) {
         return false;
     }
     $file['content'] = $http->result ? $http->result : '';
     CWebDavTools::convertFromUtf8($file['title']);
     $file['name'] = $file['title'];
     $this->recoverExtensionInName($file, $mimeType);
     return $file;
 }
開發者ID:DarneoStudio,項目名稱:bitrix,代碼行數:39,代碼來源:editdocgoogle.php


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