本文整理匯總了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;
}
示例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;
}