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


PHP Http::info方法代碼示例

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


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

示例1: sendRequest

 public static function sendRequest($req)
 {
     $rsp = Http::send($req);
     $info = Http::info();
     $ret = json_decode($rsp, true);
     if ($ret) {
         if (0 === $ret['code']) {
             $ret['httpcode'] = $info['http_code'];
             return $ret;
         } else {
             return array('httpcode' => $info['http_code'], 'code' => $ret['code'], 'message' => $ret['message'], 'data' => array());
         }
     } else {
         return array('httpcode' => $info['http_code'], 'code' => self::COSAPI_NETWORK_ERROR, 'message' => $rsp, 'data' => array());
     }
 }
開發者ID:zhonger,項目名稱:cos-php-sdk,代碼行數:16,代碼來源:Cosapi.php

示例2: del

 public static function del($bucket, $fileid, $userid = 0)
 {
     if (!$fileid) {
         return array('httpcode' => 0, 'code' => self::IMAGE_PARAMS_ERROR, 'message' => 'params error', 'data' => array());
     }
     $expired = 0;
     $url = self::generateResUrl($bucket, $userid, $fileid, 'del');
     $sign = Auth::getAppSignV2($bucket, $fileid, $expired);
     $req = array('url' => $url, 'method' => 'post', 'timeout' => 10, 'header' => array('Authorization:QCloud ' . $sign));
     $rsp = Http::send($req);
     $info = Http::info();
     $ret = json_decode($rsp, true);
     if ($ret) {
         if (0 === $ret['code']) {
             return array('httpcode' => $info['http_code'], 'code' => $ret['code'], 'message' => $ret['message'], 'data' => array());
         } else {
             return array('httpcode' => $info['http_code'], 'code' => $ret['code'], 'message' => $ret['message'], 'data' => array());
         }
     } else {
         return array('httpcode' => $info['http_code'], 'code' => self::IMAGE_NETWORK_ERROR, 'message' => 'network error', 'data' => array());
     }
 }
開發者ID:sunhk25,項目名稱:iCMS,代碼行數:22,代碼來源:ImageV2.php

示例3: upload_data

 /**
  * 上傳文件流
  * @param  integer $userid       用戶自定義分類
  * @param  string  $file_data    文件內容
  * @param  string  $session      上傳唯一標識符
  * @param  string  $offset 		 開始傳輸的位移
  * @return [type]                [description]
  */
 public static function upload_data($userid, $file_data, $session, $offset)
 {
     $expired = time() + self::EXPIRED_SECONDS;
     $url = self::generateResUrl($userid);
     $sign = Auth::appSign($url, $expired);
     $data = array('FileContent' => $file_data, 'op' => 'upload_slice', 'session' => $session, 'offset' => $offset);
     $req = array('url' => $url, 'method' => 'post', 'timeout' => 10, 'data' => $data, 'header' => array('Authorization:' . $sign));
     $rsp = Http::send($req);
     $info = Http::info();
     $ret = json_decode($rsp, true);
     if ($ret) {
         if (0 === $ret['code']) {
             $ret['httpcode'] = $info['http_code'];
             return $ret;
         } else {
             return array('httpcode' => $info['http_code'], 'code' => $ret['code'], 'message' => $ret['message'], 'data' => array());
         }
     } else {
         return array('httpcode' => $info['http_code'], 'code' => self::VIDEO_NETWORK_ERROR, 'message' => 'network error', 'data' => array());
     }
 }
開發者ID:sunhk25,項目名稱:iCMS,代碼行數:29,代碼來源:Video.php

示例4: getStatusText

 /**
  * return the status message 
  */
 public static function getStatusText()
 {
     $status = Http::info()['http_code'];
     return self::statusText($status);
 }
開發者ID:stoensin,項目名稱:php_sdk,代碼行數:8,代碼來源:Youtu.php


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