加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > PHP > 正文

php版阿里云OSS图片上传类详解

发布时间:2020-05-23 05:48:04 所属栏目:PHP 来源:互联网
导读:这篇文章主要介绍了php版阿里云OSS图片上传类,结合具体实例形式分析了php版阿里云OSS图片上传类的功能、定义、使用方法与相关注意事项,需要的朋友可以参考下

本文实例讲述了php版阿里云OSS图片上传类。分享给大家供大家参考,具体如下:

1.阿里云基本函数

ossClient->putObject($this->bucket,$object,$content,$options); } catch (OssException $e) { return $e->getMessage(); } return TRUE; } /** * 上传指定的本地文件内容 */ public function uploadFile($imgPath,$object) //$_FILES['img']['tmp_name'] { $filePath = $imgPath; $options = array(); try { $this->ossClient->uploadFile($this->bucket,$filePath,$options); } catch (OssException $e) { return $e->getMessage(); } return TRUE; } // 删除对象 public function deleteObject($object) { try { $this->ossClient->deleteObject($this->bucket,$object); } catch (OssException $e) { return $e->getMessage(); } return TRUE; } // 判断对象是否存在 public function doesObjectExist($object) { try { $result = $this->ossClient->doesObjectExist($this->bucket,$object); } catch (OssException $e) { return $e->getMessage(); } return $result; } // 批量删除对象 public function deleteObjects($objects) { try { $this->ossClient->deleteObjects($this->bucket,$objects); } catch (OssException $e) { return $e->getMessage(); } return TRUE; } /** * 获取object的内容 * * @param OssClient $ossClient OssClient实例 * @param string $bucket 存储空间名称 * @return null */ public function getObject($object) { $options = array(); try { $content = $this->ossClient->getObject($this->bucket,$options); } catch (OssException $e) { return $e->getMessage(); } // file_get_contents return $content; }

2.基本配置与辅助函数

-1,// 上传文件的最大值 'supportMulti' => true,// 是否支持多文件上传 'allowExts' => array(),// 允许上传的文件后缀 留空不作后缀检查 'allowTypes' => array(),// 允许上传的文件类型 留空不做检查 'thumb' => false,// 使用对上传图片进行缩略图处理 'imageClassPath' => 'ORG.Util.Image',// 图库类包路径 'thumbMaxWidth' => '',// 缩略图最大宽度 'thumbMaxHeight' => '',// 缩略图最大高度 'thumbPrefix' => 'thumb_',// 缩略图前缀 'thumbSuffix' => '','thumbPath' => '',// 缩略图保存路径 'thumbFile' => '',// 缩略图文件名 'thumbExt' => '',// 缩略图扩展名 'thumbRemoveOrigin' => false,// 是否移除原图 'zipImages' => false,// 压缩图片文件上传 'autoSub' => false,// 启用子目录保存文件 'subType' => 'hash',// 子目录创建方式 可以使用hash date custom 'subDir' => '',// 子目录名称 subType为custom方式后有效 'dateFormat' => 'Ymd','hashLevel' => 1,// hash的目录层次 'savePath' => '',// 上传文件保存路径 'autoCheck' => true,// 是否自动检查附件 'uploadReplace' => false,// 存在同名是否覆盖 'saveRule' => 'uniqid',// 上传文件命名规则 'hashType' => 'md5_file',// 上传文件Hash规则函数名 ); // 错误信息 private $error = ''; // 上传成功的文件信息 private $uploadFileInfo ; public function __get($name){ if(isset($this->configinfo[$name])) { return $this->configinfo[$name]; } return null; } public function __set($name,$value){ if(isset($this->configinfo[$name])) { $this->configinfo[$name] = $value; } } public function __isset($name){ return isset($this->configinfo[$name]); } /** * 架构函数 * @access public * @param array $config 上传参数 */ public function __construct($config=array()) { if(is_array($config)) { $this->config = array_merge($this->config,$config); } $this->bucket = C('OSS_TEST_BUCKET'); $this->ossClient = new OssClient(C('OSS_ACCESS_ID'),C('OSS_ACCESS_KEY'),C('OSS_ENDPOINT'),false); }

3.主函数

savePath; } $fileInfo = array(); $isUpload = false; // 获取上传的文件信息 // 对$_FILES数组信息处理 $files = $this->dealFiles($_FILES); foreach($files as $key => $file) { //过滤无效的上传 if(!empty($file['name'])) { //登记上传文件的扩展信息 if(!isset($file['key'])) $file['key'] = $key; $file['extension'] = $this->getExt($file['name']); $file['savepath'] = $savePath; $file['savename'] = $this->getSaveName($file); // 自动检查附件 if($this->autoCheck) { if(!$this->check($file)) return false; } //保存上传文件 if(!$this->save($file)) return false; if(function_exists($this->hashType)) { $fun = $this->hashType; $file['hash'] = $fun($this->autoCharset($file['savepath'].$file['savename'],'utf-8','gbk')); } //上传成功后保存文件信息,供其他地方调用 unset($file['tmp_name'],$file['error']); $fileInfo[] = $file; $isUpload = true; } } if($isUpload) { $this->uploadFileInfo = $fileInfo; return true; }else { $this->error = '没有选择上传文件'; return false; } }

4.核心处理函数

uploadReplace && $this->doesObjectExist($filename)) { // 不覆盖同名文件 $this->error = '文件已经存在!'.$filename; return false; } // 如果是图像文件 检测文件格式 if( in_array(strtolower($file['extension']),array('gif','jpg','jpeg','bmp','png','swf'))) { $info = getimagesize($file['tmp_name']); if(false === $info || ('gif' == strtolower($file['extension']) && empty($info['bits']))){ $this->error = '非法图像文件'; return false; } } if(!$this->putObject($file['tmp_name'],$this->autoCharset($filename,'gbk'))) { $this->error = '文件上传保存错误!'; return false; } if($this->thumb && in_array(strtolower($file['extension']),'png'))) { $image = getimagesize(C('OSS_IMG_URL').'/'.$filename); if(false !== $image) { //是图像文件生成缩略图 $thumbWidth = explode(',',$this->thumbMaxWidth); $thumbHeight = explode(',$this->thumbMaxHeight); $thumbPrefix = explode(',$this->thumbPrefix); $thumbSuffix = explode(',$this->thumbSuffix); $thumbFile = explode(',$this->thumbFile); $thumbPath = $this->thumbPath?$this->thumbPath:dirname($filename).'/'; $thumbExt = $this->thumbExt ? $this->thumbExt : $file['extension']; //自定义缩略图扩展名 // 生成图像缩略图 import($this->imageClassPath); for($i=0,$len=count($thumbWidth); $i<$len; $i++) { if(!empty($thumbFile[$i])) { $thumbname = $thumbFile[$i]; }else{ $prefix = isset($thumbPrefix[$i])?$thumbPrefix[$i]:$thumbPrefix[0]; $suffix = isset($thumbSuffix[$i])?$thumbSuffix[$i]:$thumbSuffix[0]; $thumbname = $prefix.basename($filename,'.'.$file['extension']).$suffix; } $this->thumb(C('OSS_IMG_URL').'/'.$filename,$thumbPath.$thumbname.'.'.$thumbExt,'',$thumbWidth[$i],$thumbHeight[$i],true); } if($this->thumbRemoveOrigin) { // 生成缩略图之后删除原图 $this->deleteObject($filename); } } } if($this->zipImags) { // TODO 对图片压缩包在线解压 } return true; } /** * 生成缩略图 * @static * @access public * @param string $image 原图 * @param string $type 图像格式 * @param string $thumbname 缩略图文件名 * @param string $maxWidth 宽度 * @param string $maxHeight 高度 * @param string $position 缩略图保存目录 * @param boolean $interlace 启用隔行扫描 * @return void */ public function thumb($image,$thumbname,$type='',$maxWidth=200,$maxHeight=50,$interlace=true) { // 获取原图信息 $info = Image::getImageInfo($image); if ($info !== false) { $srcWidth = $info['width']; $srcHeight = $info['height']; $type = empty($type) ? $info['type'] : $type; $type = strtolower($type); $interlace = $interlace ? 1 : 0; unset($info); $scale = min($maxWidth / $srcWidth,$maxHeight / $srcHeight); // 计算缩放比例 if ($scale >= 1) { // 超过原图大小不再缩略 $width = $srcWidth; $height = $srcHeight; } else { // 缩略图尺寸 $width = (int) ($srcWidth * $scale); $height = (int) ($srcHeight * $scale); } // 载入原图 $createFun = 'ImageCreateFrom' . ($type == 'jpg' ? 'jpeg' : $type); if(!function_exists($createFun)) { return false; } $srcImg = $createFun($image); //创建缩略图 if ($type != 'gif' && function_exists('imagecreatetruecolor')) $thumbImg = imagecreatetruecolor($width,$height); else $thumbImg = imagecreate($width,$height); //png和gif的透明处理 by luofei614 if('png'==$type){ imagealphablending($thumbImg,false);//取消默认的混色模式(为解决阴影为绿色的问题) imagesavealpha($thumbImg,true);//设定保存完整的 alpha 通道信息(为解决阴影为绿色的问题) }elseif('gif'==$type){ $trnprt_indx = imagecolortransparent($srcImg); if ($trnprt_indx >= 0) { //its transparent $trnprt_color = imagecolorsforindex($srcImg,$trnprt_indx); $trnprt_indx = imagecolorallocate($thumbImg,$trnprt_color['red'],$trnprt_color['green'],$trnprt_color['blue']); imagefill($thumbImg,$trnprt_indx); imagecolortransparent($thumbImg,$trnprt_indx); } } // 复制图片 if (function_exists("ImageCopyResampled")) imagecopyresampled($thumbImg,$srcImg,$width,$height,$srcWidth,$srcHeight); else imagecopyresized($thumbImg,$srcHeight); // 对jpeg图形设置隔行扫描 if ('jpg' == $type || 'jpeg' == $type) imageinterlace($thumbImg,$interlace); imagePNG($thumbImg,'Uploads/file.png'); // 中转站 // 生成图片 $this->putObject('Uploads/file.png',$thumbname); imagedestroy($thumbImg); imagedestroy($srcImg); return $thumbname; } return false; }

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读