程序员 - 我用了PHP API 上传图片提示 直接上传文件 401Unauthorized
下面是代码
<?php require_once('../upyun.class.php'); $upyun = new UpYun('*', '*', '*'); try { echo "直接上传文件\r\n"; $fh = fopen('sample.jpeg', 'rb'); $rsp = $upyun->writeFile('12.jpeg', $fh, True); // 上传图片,自动创建目录 fclose($fh); var_dump($rsp); echo "DONE\n\r\n"; echo "设置MD5校验文件完整性\r\n"; $opts = array( UpYun::CONTENT_MD5 => md5(file_get_contents("sample.jpeg")) ); $fh = fopen('sample.jpeg', 'rb'); $rsp = $upyun->writeFile('/demo/sample_md5.jpeg', $fh, True, $opts); // 上传图片,自动创建目录 fclose($fh); var_dump($rsp); echo "DONE\r\n\r\n"; echo "直接生成缩略图,不保存原图片,仅对图片文件有效\r\n"; $opts = array( UpYun::X_GMKERL_TYPE => 'square', // 缩略图类型 UpYun::X_GMKERL_VALUE => 150, // 缩略图大小 UpYun::X_GMKERL_QUALITY => 95, // 缩略图压缩质量 UpYun::X_GMKERL_UNSHARP => True // 是否进行锐化处理 ); $fh = fopen('sample.jpeg', 'rb'); $rsp = $upyun->writeFile('/demo/sample_thumb_1.jpeg', $fh, True, $opts); // 上传图片,自动创建目录 fclose($fh); var_dump($rsp); echo "DONE\r\n\r\n"; echo "按照预先设置的缩略图类型生成缩略图类型生成缩略图,不保存原图,仅对图片空间有效\r\n"; $opts = array( UpYun::X_GMKERL_THUMBNAIL => 'thumbtype' ); $fh = fopen('sample.jpeg', 'rb'); $rsp = $upyun->writeFile('/demo/sample_thumb_2.jpeg', $fh, True, $opts); // 上传图片,自动创建目录 fclose($fh); var_dump($rsp); echo "DONE\r\n\r\n"; } catch(Exception $e) { echo $e->getCode(); echo $e->getMessage(); }
<code><?php class UpYunException extends Exception {/*{{{*/ public function __construct($message, $code, Exception $previous = null) { parent::__construct($message, $code); // For PHP 5.2.x } public function __toString() { return __CLASS__ . ": [{$this->code}]: {$this->message}\n"; } }/*}}}*/ class UpYunAuthorizationException extends UpYunException {/*{{{*/ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, 401, $previous); } }/*}}}*/ class UpYunForbiddenException extends UpYunException {/*{{{*/ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, 403, $previous); } }/*}}}*/ class UpYunNotFoundException extends UpYunException {/*{{{*/ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, 404, $previous); } }/*}}}*/ class UpYunNotAcceptableException extends UpYunException {/*{{{*/ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, 406, $previous); } }/*}}}*/ class UpYunServiceUnavailable extends UpYunException {/*{{{*/ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, 503, $previous); } }/*}}}*/ class UpYun { const VERSION = '2.0'; /*{{{*/ const ED_AUTO = 'v0.api.upyun.com'; const ED_TELECOM = 'v1.api.upyun.com'; const ED_CNC = 'v2.api.upyun.com'; const ED_CTT = 'v3.api.upyun.com'; const CONTENT_TYPE = 'Content-Type'; const CONTENT_MD5 = 'Content-MD5'; const CONTENT_SECRET = 'Content-Secret'; // 缩略图 const X_GMKERL_THUMBNAIL = 'x-gmkerl-thumbnail'; const X_GMKERL_TYPE = 'x-gmkerl-type'; const X_GMKERL_VALUE = 'x-gmkerl-value'; const X_GMKERL_QUALITY = 'xgmkerl-quality'; const X_GMKERL_UNSHARP = 'xgmkerl-unsharp'; /*}}}*/ private $_bucket_name; private $_username; private $_password; private $_timeout = 30; /** * @deprecated */ private $_content_md5 = NULL; /** * @deprecated */ private $_file_secret = NULL; /** * @deprecated */ private $_file_infos= NULL; protected $endpoint; /** * 初始化 UpYun 存储接口 * @param $bucketname 空间名称 * @param $username 操作员名称 * @param $password 密码 * * @return object */ public function __construct($*, $*, $*, $endpoint = NULL, $timeout = 30) {/*{{{*/ $this->_bucketname = $*; $this->_username = $*; $this->_password = md5($*; $this->_timeout = $timeout; $this->endpoint = is_null($endpoint) ? self::ED_AUTO : $endpoint; }/*}}}*/ /** * 获取当前SDK版本号 */ public function version() { return self::VERSION; } /** * 创建目录 * @param $path 路径 * @param $auto_mkdir 是否自动创建父级目录,最多10层次 * * @return void */ public function makeDir($path, $auto_mkdir = false) {/*{{{*/ $headers = array('Folder' => 'true'); if ($auto_mkdir) $headers['Mkdir'] = 'true'; return $this->_do_request('PUT', $path, $headers); }/*}}}*/ /** * 删除目录和文件 * @param string $path 路径 * * @return boolean */ public function delete($path) {/*{{{*/ return $this->_do_request('DELETE', $path); }/*}}}*/ /** * 上传文件 * @param string $path 存储路径 * @param mixed $file 需要上传的文件,可以是文件流或者文件内容 * @param boolean $auto_mkdir 自动创建目录 * @param array $opts 可选参数 */ public function writeFile($path, $file, $auto_mkdir = False, $opts = NULL) {/*{{{*/ if (is_null($opts)) $opts = array(); if (!is_null($this->_content_md5) || !is_null($this->_file_secret)) { //if (!is_null($this->_content_md5)) array_push($opts, self::CONTENT_MD5 . ": {$this->_content_md5}"); //if (!is_null($this->_file_secret)) array_push($opts, self::CONTENT_SECRET . ": {$this->_file_secret}"); if (!is_null($this->_content_md5)) $opts[self::CONTENT_MD5] = $this->_content_md5; if (!is_null($this->_file_secret)) $opts[self::CONTENT_SECRET] = $this->_file_secret; } // 如果设置了缩略版本或者缩略图类型,则添加默认压缩质量和锐化参数 //if (isset($opts[self::X_GMKERL_THUMBNAIL]) || isset($opts[self::X_GMKERL_TYPE])) { // if (!isset($opts[self::X_GMKERL_QUALITY])) $opts[self::X_GMKERL_QUALITY] = 95; // if (!isset($opts[self::X_GMKERL_UNSHARP])) $opts[self::X_GMKERL_UNSHARP] = 'true'; //} if ($auto_mkdir === True) $opts['Mkdir'] = 'true'; $this->_file_infos = $this->_do_request('PUT', $path, $opts, $file); return $this->_file_infos; }/*}}}*/ /** * 下载文件 * @param string $path 文件路径 * @param mixed $file_handle * * @return mixed */ public function readFile($path, $file_handle = NULL) {/*{{{*/ return $this->_do_request('GET', $path, NULL, NULL, $file_handle); }/*}}}*/ /** * 获取目录文件列表 * * @param string $path 查询路径 * * @return mixed */ public function getList($path = '/') {/*{{{*/ $rsp = $this->_do_request('GET', $path); $list = array(); if ($rsp) { $rsp = explode("\n", $rsp); foreach($rsp as $item) { @list($name, $type, $size, $time) = explode("\t", trim($item)); if (!empty($time)) { $type = $type == 'N' ? 'file' : 'folder'; } $item = array( 'name' => $name, 'type' => $type, 'size' => intval($size), 'time' => intval($time), ); array_push($list, $item); } } return $list; }/*}}}*/ /** * 获取目录空间使用情况 * * @param string $path 目录路径 * * @return mixed */ public function getFolderUsage($path) {/*{{{*/ $rsp = $this->_do_request('GET', $path . '?usage'); return floatval($rsp); }/*}}}*/ /** * 获取文件、目录信息 * * @param string $path 路径 * * @return mixed */ public function getFileInfo($path) {/*{{{*/ $rsp = $this->_do_request('HEAD', $path); return $rsp; }/*}}}*/ /** * 连接签名方法 * @param $method 请求方式 {GET, POST, PUT, DELETE} * return 签名字符串 */ private function sign($method, $uri, $date, $length){/*{{{*/ //$uri = urlencode($uri); $sign = "{$method}&{$uri}&{$date}&{$length}&{$this->_password}"; return 'UpYun '.$this->_username.':'.md5($sign); }/*}}}*/ /** * HTTP REQUEST 封装 * @param string $method HTTP REQUEST方法,包括PUT、POST、GET、OPTIONS、DELETE * @param string $path 除Bucketname之外的请求路径,包括get参数 * @param array $headers 请求需要的特殊HTTP HEADERS * @param array $body 需要POST发送的数据 * * @return mixed */ protected function _do_request($method, $path, $headers = NULL, $body= NULL, $file_handle= NULL) {/*{{{*/ $uri = "/{$this->_bucketname}{$path}"; $ch = curl_init("http://{$this->endpoint}{$uri}"); $_headers = array('Expect:'); if (!is_null($headers) && is_array($headers)){ foreach($headers as $k => $v) { array_push($_headers, "{$k}: {$v}"); } } $length = 0; $date = gmdate('D, d M Y H:i:s \G\M\T'); if (!is_null($body)) { if(is_resource($body)){ fseek($body, 0, SEEK_END); $length = ftell($body); fseek($body, 0); array_push($_headers, "Content-Length: {$length}"); curl_setopt($ch, CURLOPT_INFILE, $body); curl_setopt($ch, CURLOPT_INFILESIZE, $length); } else { $length = @strlen($body); array_push($_headers, "Content-Length: {$length}"); curl_setopt($ch, CURLOPT_POSTFIELDS, $body); } } else { array_push($_headers, "Content-Length: {$length}"); } array_push($_headers, "Authorization: {$this->sign($method, $uri, $date, $length)}"); array_push($_headers, "Date: {$date}"); curl_setopt($ch, CURLOPT_HTTPHEADER, $_headers); curl_setopt($ch, CURLOPT_TIMEOUT, $this->_timeout); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); if ($method == 'PUT' || $method == 'POST') { curl_setopt($ch, CURLOPT_POST, 1); } else { curl_setopt($ch, CURLOPT_POST, 0); } if ($method == 'GET' && is_resource($file_handle)) { curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_FILE, $file_handle); } if ($method == 'HEAD') { curl_setopt($ch, CURLOPT_NOBODY, true); } $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); if ($http_code == 0) throw new UpYunException('Connection Failed', $http_code); curl_close($ch); $header_string = ''; $body = ''; if ($method == 'GET' && is_resource($file_handle)) { $header_string = ''; $body = $response; } else { list($header_string, $body) = explode("\r\n\r\n", $response, 2); } //var_dump($http_code); if ($http_code == 200) { if ($method == 'GET' && is_null($file_handle)) { return $body; } else { $data = $this->_getHeadersData($header_string); return count($data) > 0 ? $data : true; } //elseif ($method == 'HEAD') { // //return $this->_get_headers_data(substr($response, 0 , $header_size)); // return $this->_getHeadersData($header_string); //} //return True; } else { $message = $this->_getErrorMessage($header_string); if (is_null($message) && $method == 'GET' && is_resource($file_handle)) { $message = 'File Not Found'; } switch($http_code) { case 401: throw new UpYunAuthorizationException($message); break; case 403: throw new UpYunForbiddenException($message); break; case 404: throw new UpYunNotFoundException($message); break; case 406: throw new UpYunNotAcceptableException($message); break; case 503: throw new UpYunServiceUnavailable($message); break; default: throw new UpYunException($message, $http_code); } } }/*}}}*/ /** * 处理HTTP HEADERS中返回的自定义数据 * * @param string $text header字符串 * * @return array */ private function _getHeadersData($text) {/*{{{*/ $headers = explode("\r\n", $text); $items = array(); foreach($headers as $header) { $header = trim($header); if(strpos($header, 'x-upyun') !== False){ list($k, $v) = explode(':', $header); $items[trim($k)] = in_array(substr($k,8,5), array('width','heigh','frame')) ? intval($v) : trim($v); } } return $items; }/*}}}*/ /** * 获取返回的错误信息 * * @param string $header_string * * @return mixed */ private function _getErrorMessage($header_string) { list($status, $stash) = explode("\r\n", $header_string, 2); list($v, $code, $message) = explode(" ", $status, 3); return $message; } /** * 删除目录 * @deprecated * @param $path 路径 * * @return void */ public function rmDir($path) {/*{{{*/ $this->_do_request('DELETE', $path); }/*}}}*/ /** * 删除文件 * * @deprecated * @param string $path 要删除的文件路径 * * @return boolean */ public function deleteFile($path) {/*{{{*/ $rsp = $this->_do_request('DELETE', $path); }/*}}}*/ /** * 获取目录文件列表 * @deprecated * * @param string $path 要获取列表的目录 * * @return array */ public function readDir($path) {/*{{{*/ return $this->getList($path); }/*}}}*/ /** * 获取空间使用情况 * * @deprecated 推荐直接使用 getFolderUsage('/')来获取 * @return mixed */ public function getBucketUsage() {/*{{{*/ return $this->getFolderUsage('/'); }/*}}}*/ /** * 获取文件信息 * * #deprecated * @param $file 文件路径(包含文件名) * return array('type'=> file | folder, 'size'=> file size, 'date'=> unix time) 或 null */ //public function getFileInfo($file){/*{{{*/ // $result = $this->head($file); // if(is_null($r))return null; // return array('type'=> $this->tmp_infos['x-upyun-file-type'], 'size'=> @intval($this->tmp_infos['x-upyun-file-size']), 'date'=> @intval($this->tmp_infos['x-upyun-file-date'])); //}/*}}}*/ /** * 切换 API 接口的域名 * * @deprecated * @param $domain {默然 v0.api.upyun.com 自动识别, v1.api.upyun.com 电信, v2.api.upyun.com 联通, v3.api.upyun.com 移动} * return null; */ public function setApiDomain($domain){/*{{{*/ $this->endpoint = $domain; }/*}}}*/ /** * 设置待上传文件的 Content-MD5 值(如又拍云服务端收到的文件MD5值与用户设置的不一致,将回报 406 Not Acceptable 错误) * * @deprecated * @param $str (文件 MD5 校验码) * return null; */ public function setContentMD5($str){/*{{{*/ $this->_content_md5 = $str; }/*}}}*/ /** * 设置待上传文件的 访问密钥(注意:仅支持图片空!,设置密钥后,无法根据原文件URL直接访问,需带 URL 后面加上 (缩略图间隔标志符+密钥) 进行访问) * 如缩略图间隔标志符为 ! ,密钥为 bac,上传文件路径为 /folder/test.jpg ,那么该图片的对外访问地址为: http://空间域名/folder/test.jpg!bac * * @deprecated * @param $str (文件 MD5 校验码) * return null; */ public function setFileSecret($str){/*{{{*/ $this->_file_secret = $str; }/*}}}*/ /** * @deprecated * 获取上传文件后的信息(仅图片空间有返回数据) * @param $key 信息字段名(x-upyun-width、x-upyun-height、x-upyun-frames、x-upyun-file-type) * return value or NULL */ public function getWritedFileInfo($key){/*{{{*/ if(!isset($this->_file_infos))return NULL; return $this->_file_infos[$key]; }/*}}}*/ } </code>
空间名 账户 密码都是对的 用*代替了 PHP API 就改了空间名 账户 密码 其他都没变
回复内容:
下面是代码
<?php require_once('../upyun.class.php'); $upyun = new UpYun('*', '*', '*'); try { echo "直接上传文件\r\n"; $fh = fopen('sample.jpeg', 'rb'); $rsp = $upyun->writeFile('12.jpeg', $fh, True); // 上传图片,自动创建目录 fclose($fh); var_dump($rsp); echo "DONE\n\r\n"; echo "设置MD5校验文件完整性\r\n"; $opts = array( UpYun::CONTENT_MD5 => md5(file_get_contents("sample.jpeg")) ); $fh = fopen('sample.jpeg', 'rb'); $rsp = $upyun->writeFile('/demo/sample_md5.jpeg', $fh, True, $opts); // 上传图片,自动创建目录 fclose($fh); var_dump($rsp); echo "DONE\r\n\r\n"; echo "直接生成缩略图,不保存原图片,仅对图片文件有效\r\n"; $opts = array( UpYun::X_GMKERL_TYPE => 'square', // 缩略图类型 UpYun::X_GMKERL_VALUE => 150, // 缩略图大小 UpYun::X_GMKERL_QUALITY => 95, // 缩略图压缩质量 UpYun::X_GMKERL_UNSHARP => True // 是否进行锐化处理 ); $fh = fopen('sample.jpeg', 'rb'); $rsp = $upyun->writeFile('/demo/sample_thumb_1.jpeg', $fh, True, $opts); // 上传图片,自动创建目录 fclose($fh); var_dump($rsp); echo "DONE\r\n\r\n"; echo "按照预先设置的缩略图类型生成缩略图类型生成缩略图,不保存原图,仅对图片空间有效\r\n"; $opts = array( UpYun::X_GMKERL_THUMBNAIL => 'thumbtype' ); $fh = fopen('sample.jpeg', 'rb'); $rsp = $upyun->writeFile('/demo/sample_thumb_2.jpeg', $fh, True, $opts); // 上传图片,自动创建目录 fclose($fh); var_dump($rsp); echo "DONE\r\n\r\n"; } catch(Exception $e) { echo $e->getCode(); echo $e->getMessage(); }
<code><?php class UpYunException extends Exception {/*{{{*/ public function __construct($message, $code, Exception $previous = null) { parent::__construct($message, $code); // For PHP 5.2.x } public function __toString() { return __CLASS__ . ": [{$this->code}]: {$this->message}\n"; } }/*}}}*/ class UpYunAuthorizationException extends UpYunException {/*{{{*/ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, 401, $previous); } }/*}}}*/ class UpYunForbiddenException extends UpYunException {/*{{{*/ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, 403, $previous); } }/*}}}*/ class UpYunNotFoundException extends UpYunException {/*{{{*/ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, 404, $previous); } }/*}}}*/ class UpYunNotAcceptableException extends UpYunException {/*{{{*/ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, 406, $previous); } }/*}}}*/ class UpYunServiceUnavailable extends UpYunException {/*{{{*/ public function __construct($message, $code = 0, Exception $previous = null) { parent::__construct($message, 503, $previous); } }/*}}}*/ class UpYun { const VERSION = '2.0'; /*{{{*/ const ED_AUTO = 'v0.api.upyun.com'; const ED_TELECOM = 'v1.api.upyun.com'; const ED_CNC = 'v2.api.upyun.com'; const ED_CTT = 'v3.api.upyun.com'; const CONTENT_TYPE = 'Content-Type'; const CONTENT_MD5 = 'Content-MD5'; const CONTENT_SECRET = 'Content-Secret'; // 缩略图 const X_GMKERL_THUMBNAIL = 'x-gmkerl-thumbnail'; const X_GMKERL_TYPE = 'x-gmkerl-type'; const X_GMKERL_VALUE = 'x-gmkerl-value'; const X_GMKERL_QUALITY = 'xgmkerl-quality'; const X_GMKERL_UNSHARP = 'xgmkerl-unsharp'; /*}}}*/ private $_bucket_name; private $_username; private $_password; private $_timeout = 30; /** * @deprecated */ private $_content_md5 = NULL; /** * @deprecated */ private $_file_secret = NULL; /** * @deprecated */ private $_file_infos= NULL; protected $endpoint; /** * 初始化 UpYun 存储接口 * @param $bucketname 空间名称 * @param $username 操作员名称 * @param $password 密码 * * @return object */ public function __construct($*, $*, $*, $endpoint = NULL, $timeout = 30) {/*{{{*/ $this->_bucketname = $*; $this->_username = $*; $this->_password = md5($*; $this->_timeout = $timeout; $this->endpoint = is_null($endpoint) ? self::ED_AUTO : $endpoint; }/*}}}*/ /** * 获取当前SDK版本号 */ public function version() { return self::VERSION; } /** * 创建目录 * @param $path 路径 * @param $auto_mkdir 是否自动创建父级目录,最多10层次 * * @return void */ public function makeDir($path, $auto_mkdir = false) {/*{{{*/ $headers = array('Folder' => 'true'); if ($auto_mkdir) $headers['Mkdir'] = 'true'; return $this->_do_request('PUT', $path, $headers); }/*}}}*/ /** * 删除目录和文件 * @param string $path 路径 * * @return boolean */ public function delete($path) {/*{{{*/ return $this->_do_request('DELETE', $path); }/*}}}*/ /** * 上传文件 * @param string $path 存储路径 * @param mixed $file 需要上传的文件,可以是文件流或者文件内容 * @param boolean $auto_mkdir 自动创建目录 * @param array $opts 可选参数 */ public function writeFile($path, $file, $auto_mkdir = False, $opts = NULL) {/*{{{*/ if (is_null($opts)) $opts = array(); if (!is_null($this->_content_md5) || !is_null($this->_file_secret)) { //if (!is_null($this->_content_md5)) array_push($opts, self::CONTENT_MD5 . ": {$this->_content_md5}"); //if (!is_null($this->_file_secret)) array_push($opts, self::CONTENT_SECRET . ": {$this->_file_secret}"); if (!is_null($this->_content_md5)) $opts[self::CONTENT_MD5] = $this->_content_md5; if (!is_null($this->_file_secret)) $opts[self::CONTENT_SECRET] = $this->_file_secret; } // 如果设置了缩略版本或者缩略图类型,则添加默认压缩质量和锐化参数 //if (isset($opts[self::X_GMKERL_THUMBNAIL]) || isset($opts[self::X_GMKERL_TYPE])) { // if (!isset($opts[self::X_GMKERL_QUALITY])) $opts[self::X_GMKERL_QUALITY] = 95; // if (!isset($opts[self::X_GMKERL_UNSHARP])) $opts[self::X_GMKERL_UNSHARP] = 'true'; //} if ($auto_mkdir === True) $opts['Mkdir'] = 'true'; $this->_file_infos = $this->_do_request('PUT', $path, $opts, $file); return $this->_file_infos; }/*}}}*/ /** * 下载文件 * @param string $path 文件路径 * @param mixed $file_handle * * @return mixed */ public function readFile($path, $file_handle = NULL) {/*{{{*/ return $this->_do_request('GET', $path, NULL, NULL, $file_handle); }/*}}}*/ /** * 获取目录文件列表 * * @param string $path 查询路径 * * @return mixed */ public function getList($path = '/') {/*{{{*/ $rsp = $this->_do_request('GET', $path); $list = array(); if ($rsp) { $rsp = explode("\n", $rsp); foreach($rsp as $item) { @list($name, $type, $size, $time) = explode("\t", trim($item)); if (!empty($time)) { $type = $type == 'N' ? 'file' : 'folder'; } $item = array( 'name' => $name, 'type' => $type, 'size' => intval($size), 'time' => intval($time), ); array_push($list, $item); } } return $list; }/*}}}*/ /** * 获取目录空间使用情况 * * @param string $path 目录路径 * * @return mixed */ public function getFolderUsage($path) {/*{{{*/ $rsp = $this->_do_request('GET', $path . '?usage'); return floatval($rsp); }/*}}}*/ /** * 获取文件、目录信息 * * @param string $path 路径 * * @return mixed */ public function getFileInfo($path) {/*{{{*/ $rsp = $this->_do_request('HEAD', $path); return $rsp; }/*}}}*/ /** * 连接签名方法 * @param $method 请求方式 {GET, POST, PUT, DELETE} * return 签名字符串 */ private function sign($method, $uri, $date, $length){/*{{{*/ //$uri = urlencode($uri); $sign = "{$method}&{$uri}&{$date}&{$length}&{$this->_password}"; return 'UpYun '.$this->_username.':'.md5($sign); }/*}}}*/ /** * HTTP REQUEST 封装 * @param string $method HTTP REQUEST方法,包括PUT、POST、GET、OPTIONS、DELETE * @param string $path 除Bucketname之外的请求路径,包括get参数 * @param array $headers 请求需要的特殊HTTP HEADERS * @param array $body 需要POST发送的数据 * * @return mixed */ protected function _do_request($method, $path, $headers = NULL, $body= NULL, $file_handle= NULL) {/*{{{*/ $uri = "/{$this->_bucketname}{$path}"; $ch = curl_init("http://{$this->endpoint}{$uri}"); $_headers = array('Expect:'); if (!is_null($headers) && is_array($headers)){ foreach($headers as $k => $v) { array_push($_headers, "{$k}: {$v}"); } } $length = 0; $date = gmdate('D, d M Y H:i:s \G\M\T'); if (!is_null($body)) { if(is_resource($body)){ fseek($body, 0, SEEK_END); $length = ftell($body); fseek($body, 0); array_push($_headers, "Content-Length: {$length}"); curl_setopt($ch, CURLOPT_INFILE, $body); curl_setopt($ch, CURLOPT_INFILESIZE, $length); } else { $length = @strlen($body); array_push($_headers, "Content-Length: {$length}"); curl_setopt($ch, CURLOPT_POSTFIELDS, $body); } } else { array_push($_headers, "Content-Length: {$length}"); } array_push($_headers, "Authorization: {$this->sign($method, $uri, $date, $length)}"); array_push($_headers, "Date: {$date}"); curl_setopt($ch, CURLOPT_HTTPHEADER, $_headers); curl_setopt($ch, CURLOPT_TIMEOUT, $this->_timeout); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); if ($method == 'PUT' || $method == 'POST') { curl_setopt($ch, CURLOPT_POST, 1); } else { curl_setopt($ch, CURLOPT_POST, 0); } if ($method == 'GET' && is_resource($file_handle)) { curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_FILE, $file_handle); } if ($method == 'HEAD') { curl_setopt($ch, CURLOPT_NOBODY, true); } $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); if ($http_code == 0) throw new UpYunException('Connection Failed', $http_code); curl_close($ch); $header_string = ''; $body = ''; if ($method == 'GET' && is_resource($file_handle)) { $header_string = ''; $body = $response; } else { list($header_string, $body) = explode("\r\n\r\n", $response, 2); } //var_dump($http_code); if ($http_code == 200) { if ($method == 'GET' && is_null($file_handle)) { return $body; } else { $data = $this->_getHeadersData($header_string); return count($data) > 0 ? $data : true; } //elseif ($method == 'HEAD') { // //return $this->_get_headers_data(substr($response, 0 , $header_size)); // return $this->_getHeadersData($header_string); //} //return True; } else { $message = $this->_getErrorMessage($header_string); if (is_null($message) && $method == 'GET' && is_resource($file_handle)) { $message = 'File Not Found'; } switch($http_code) { case 401: throw new UpYunAuthorizationException($message); break; case 403: throw new UpYunForbiddenException($message); break; case 404: throw new UpYunNotFoundException($message); break; case 406: throw new UpYunNotAcceptableException($message); break; case 503: throw new UpYunServiceUnavailable($message); break; default: throw new UpYunException($message, $http_code); } } }/*}}}*/ /** * 处理HTTP HEADERS中返回的自定义数据 * * @param string $text header字符串 * * @return array */ private function _getHeadersData($text) {/*{{{*/ $headers = explode("\r\n", $text); $items = array(); foreach($headers as $header) { $header = trim($header); if(strpos($header, 'x-upyun') !== False){ list($k, $v) = explode(':', $header); $items[trim($k)] = in_array(substr($k,8,5), array('width','heigh','frame')) ? intval($v) : trim($v); } } return $items; }/*}}}*/ /** * 获取返回的错误信息 * * @param string $header_string * * @return mixed */ private function _getErrorMessage($header_string) { list($status, $stash) = explode("\r\n", $header_string, 2); list($v, $code, $message) = explode(" ", $status, 3); return $message; } /** * 删除目录 * @deprecated * @param $path 路径 * * @return void */ public function rmDir($path) {/*{{{*/ $this->_do_request('DELETE', $path); }/*}}}*/ /** * 删除文件 * * @deprecated * @param string $path 要删除的文件路径 * * @return boolean */ public function deleteFile($path) {/*{{{*/ $rsp = $this->_do_request('DELETE', $path); }/*}}}*/ /** * 获取目录文件列表 * @deprecated * * @param string $path 要获取列表的目录 * * @return array */ public function readDir($path) {/*{{{*/ return $this->getList($path); }/*}}}*/ /** * 获取空间使用情况 * * @deprecated 推荐直接使用 getFolderUsage('/')来获取 * @return mixed */ public function getBucketUsage() {/*{{{*/ return $this->getFolderUsage('/'); }/*}}}*/ /** * 获取文件信息 * * #deprecated * @param $file 文件路径(包含文件名) * return array('type'=> file | folder, 'size'=> file size, 'date'=> unix time) 或 null */ //public function getFileInfo($file){/*{{{*/ // $result = $this->head($file); // if(is_null($r))return null; // return array('type'=> $this->tmp_infos['x-upyun-file-type'], 'size'=> @intval($this->tmp_infos['x-upyun-file-size']), 'date'=> @intval($this->tmp_infos['x-upyun-file-date'])); //}/*}}}*/ /** * 切换 API 接口的域名 * * @deprecated * @param $domain {默然 v0.api.upyun.com 自动识别, v1.api.upyun.com 电信, v2.api.upyun.com 联通, v3.api.upyun.com 移动} * return null; */ public function setApiDomain($domain){/*{{{*/ $this->endpoint = $domain; }/*}}}*/ /** * 设置待上传文件的 Content-MD5 值(如又拍云服务端收到的文件MD5值与用户设置的不一致,将回报 406 Not Acceptable 错误) * * @deprecated * @param $str (文件 MD5 校验码) * return null; */ public function setContentMD5($str){/*{{{*/ $this->_content_md5 = $str; }/*}}}*/ /** * 设置待上传文件的 访问密钥(注意:仅支持图片空!,设置密钥后,无法根据原文件URL直接访问,需带 URL 后面加上 (缩略图间隔标志符+密钥) 进行访问) * 如缩略图间隔标志符为 ! ,密钥为 bac,上传文件路径为 /folder/test.jpg ,那么该图片的对外访问地址为: http://空间域名/folder/test.jpg!bac * * @deprecated * @param $str (文件 MD5 校验码) * return null; */ public function setFileSecret($str){/*{{{*/ $this->_file_secret = $str; }/*}}}*/ /** * @deprecated * 获取上传文件后的信息(仅图片空间有返回数据) * @param $key 信息字段名(x-upyun-width、x-upyun-height、x-upyun-frames、x-upyun-file-type) * return value or NULL */ public function getWritedFileInfo($key){/*{{{*/ if(!isset($this->_file_infos))return NULL; return $this->_file_infos[$key]; }/*}}}*/ } </code>
空间名 账户 密码都是对的 用*代替了 PHP API 就改了空间名 账户 密码 其他都没变
$rsp = $upyun->writeFile('12.jpeg', $fh, True);
保存路径必须已斜杠 "/" 开头: $rsp = $upyun->writeFile('/12.jpeg', $fh, True);

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

Video Face Swap
완전히 무료인 AI 얼굴 교환 도구를 사용하여 모든 비디오의 얼굴을 쉽게 바꾸세요!

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

이 튜토리얼은 PHP를 사용하여 XML 문서를 효율적으로 처리하는 방법을 보여줍니다. XML (Extensible Markup Language)은 인간의 가독성과 기계 구문 분석을 위해 설계된 다목적 텍스트 기반 마크 업 언어입니다. 일반적으로 데이터 저장 AN에 사용됩니다

JWT는 주로 신분증 인증 및 정보 교환을 위해 당사자간에 정보를 안전하게 전송하는 데 사용되는 JSON을 기반으로 한 개방형 표준입니다. 1. JWT는 헤더, 페이로드 및 서명의 세 부분으로 구성됩니다. 2. JWT의 작업 원칙에는 세 가지 단계가 포함됩니다. JWT 생성, JWT 확인 및 Parsing Payload. 3. PHP에서 인증에 JWT를 사용하면 JWT를 생성하고 확인할 수 있으며 사용자 역할 및 권한 정보가 고급 사용에 포함될 수 있습니다. 4. 일반적인 오류에는 서명 검증 실패, 토큰 만료 및 대형 페이로드가 포함됩니다. 디버깅 기술에는 디버깅 도구 및 로깅 사용이 포함됩니다. 5. 성능 최적화 및 모범 사례에는 적절한 시그니처 알고리즘 사용, 타당성 기간 설정 합리적,

정적 바인딩 (정적 : :)는 PHP에서 늦은 정적 바인딩 (LSB)을 구현하여 클래스를 정의하는 대신 정적 컨텍스트에서 호출 클래스를 참조 할 수 있습니다. 1) 구문 분석 프로세스는 런타임에 수행됩니다. 2) 상속 관계에서 통화 클래스를 찾아보십시오. 3) 성능 오버 헤드를 가져올 수 있습니다.

문자열은 문자, 숫자 및 기호를 포함하여 일련의 문자입니다. 이 튜토리얼은 다른 방법을 사용하여 PHP의 주어진 문자열의 모음 수를 계산하는 방법을 배웁니다. 영어의 모음은 A, E, I, O, U이며 대문자 또는 소문자 일 수 있습니다. 모음이란 무엇입니까? 모음은 특정 발음을 나타내는 알파벳 문자입니다. 대문자와 소문자를 포함하여 영어에는 5 개의 모음이 있습니다. a, e, i, o, u 예 1 입력 : String = "Tutorialspoint" 출력 : 6 설명하다 문자열의 "Tutorialspoint"의 모음은 u, o, i, a, o, i입니다. 총 6 개의 위안이 있습니다

PHP의 마법 방법은 무엇입니까? PHP의 마법 방법은 다음과 같습니다. 1. \ _ \ _ Construct, 객체를 초기화하는 데 사용됩니다. 2. \ _ \ _ 파괴, 자원을 정리하는 데 사용됩니다. 3. \ _ \ _ 호출, 존재하지 않는 메소드 호출을 처리하십시오. 4. \ _ \ _ get, 동적 속성 액세스를 구현하십시오. 5. \ _ \ _ Set, 동적 속성 설정을 구현하십시오. 이러한 방법은 특정 상황에서 자동으로 호출되어 코드 유연성과 효율성을 향상시킵니다.

PHP와 Python은 각각 고유 한 장점이 있으며 프로젝트 요구 사항에 따라 선택합니다. 1.PHP는 웹 개발, 특히 웹 사이트의 빠른 개발 및 유지 보수에 적합합니다. 2. Python은 간결한 구문을 가진 데이터 과학, 기계 학습 및 인공 지능에 적합하며 초보자에게 적합합니다.

PHP는 전자 상거래, 컨텐츠 관리 시스템 및 API 개발에 널리 사용됩니다. 1) 전자 상거래 : 쇼핑 카트 기능 및 지불 처리에 사용됩니다. 2) 컨텐츠 관리 시스템 : 동적 컨텐츠 생성 및 사용자 관리에 사용됩니다. 3) API 개발 : 편안한 API 개발 및 API 보안에 사용됩니다. 성능 최적화 및 모범 사례를 통해 PHP 애플리케이션의 효율성과 유지 보수 성이 향상됩니다.

PHP는 서버 측에서 널리 사용되는 스크립팅 언어이며 특히 웹 개발에 적합합니다. 1.PHP는 HTML을 포함하고 HTTP 요청 및 응답을 처리 할 수 있으며 다양한 데이터베이스를 지원할 수 있습니다. 2.PHP는 강력한 커뮤니티 지원 및 오픈 소스 리소스를 통해 동적 웹 컨텐츠, 프로세스 양식 데이터, 액세스 데이터베이스 등을 생성하는 데 사용됩니다. 3. PHP는 해석 된 언어이며, 실행 프로세스에는 어휘 분석, 문법 분석, 편집 및 실행이 포함됩니다. 4. PHP는 사용자 등록 시스템과 같은 고급 응용 프로그램을 위해 MySQL과 결합 할 수 있습니다. 5. PHP를 디버깅 할 때 error_reporting () 및 var_dump ()와 같은 함수를 사용할 수 있습니다. 6. 캐싱 메커니즘을 사용하여 PHP 코드를 최적화하고 데이터베이스 쿼리를 최적화하며 내장 기능을 사용하십시오. 7
