问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

阿里云oss php上传图片问题 上传前把图片重命名之后再上传到oss 怎么写代码呢

发布网友 发布时间:2022-04-28 05:44

我来回答

2个回答

懂视网 时间:2022-04-28 10:06

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

【相关学习推荐:php编程(视频)】

1.阿里云基本函数

/**
 * 把本地变量的内容到文件
 * 简单上传,上传指定变量的内存值作为object的内容
 */
public function putObject($imgPath,$object)
{
 $content = file_get_contents($imgPath); // 把当前文件的内容获取到传入文件中
 $options = array();
 try {
 $this->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, $object, $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, $object, $options);
 } catch (OssException $e) {
 return $e->getMessage();
 }
 // file_get_contents
 return $content;
}

2.基本配置与辅助函数

public $ossClient,$bucket;
private $configinfo = array(
 'maxSize' => -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.主函数

/**
 * 上传所有文件
 * @access public
 * @param string $savePath 上传文件保存路径
 * @return string
 */
public function upload($savePath ='') {
 //如果不指定保存文件名,则由系统默认
 if(empty($savePath)) {
 $savePath = $this->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.核心处理函数

/**
 * 上传一个文件
 * @access public
 * @param mixed $name 数据
 * @param string $value 数据表名
 * @return string
 */
private function save($file) {
 $filename = $file['savepath'].$file['savename'];
 if(!$this->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,'utf-8','gbk'))) {
 $this->error = '文件上传保存错误!';
 return false;
 }
 if($this->thumb && in_array(strtolower($file['extension']),array('gif','jpg','jpeg','bmp','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, 0, 0, $trnprt_indx);
  imagecolortransparent($thumbImg, $trnprt_indx);
 }
 }
 // 复制图片
 if (function_exists("ImageCopyResampled"))
 imagecopyresampled($thumbImg, $srcImg, 0, 0, 0, 0, $width, $height, $srcWidth, $srcHeight);
 else
 imagecopyresized($thumbImg, $srcImg, 0, 0, 0, 0, $width, $height, $srcWidth, $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;
}

5.辅助函数

/**
* 转换上传文件数组变量为正确的方式
* @access private
* @param array $files 上传的文件变量
* @return array
*/
private function dealFiles($files) {
 $fileArray = array();
 $n = 0;
 foreach ($files as $key=>$file){
 if(is_array($file['name'])) {
 $keys = array_keys($file);
 $count = count($file['name']);
 for ($i=0; $i<$count; $i++) {
  $fileArray[$n]['key'] = $key;
  foreach ($keys as $_key){
  $fileArray[$n][$_key] = $file[$_key][$i];
  }
  $n++;
 }
 }else{
 $fileArray[$key] = $file;
 }
 }
 return $fileArray;
}
/**
* 检查上传的文件
* @access private
* @param array $file 文件信息
* @return boolean
*/
private function check($file) {
 if($file['error']!== 0) {
 //文件上传失败
 //捕获错误代码
 $this->error($file['error']);
 return false;
 }
 //文件上传成功,进行自定义规则检查
 //检查文件大小
 if(!$this->checkSize($file['size'])) {
 $this->error = '上传文件大小不符!';
 return false;
 }
 //检查文件Mime类型
 if(!$this->checkType($file['type'])) {
 $this->error = '上传文件MIME类型不允许!';
 return false;
 }
 //检查文件类型
 if(!$this->checkExt($file['extension'])) {
 $this->error ='上传文件类型不允许';
 return false;
 }
 //检查是否合法上传
 if(!$this->checkUpload($file['tmp_name'])) {
 $this->error = '非法上传文件!';
 return false;
 }
 return true;
}
// 自动转换字符集 支持数组转换
private function autoCharset($fContents, $from='gbk', $to='utf-8') {
 $from = strtoupper($from) == 'UTF8' ? 'utf-8' : $from;
 $to = strtoupper($to) == 'UTF8' ? 'utf-8' : $to;
 if (strtoupper($from) === strtoupper($to) || empty($fContents) || (is_scalar($fContents) && !is_string($fContents))) {
 //如果编码相同或者非字符串标量则不转换
 return $fContents;
 }
 if (function_exists('mb_convert_encoding')) {
 return mb_convert_encoding($fContents, $to, $from);
 } elseif (function_exists('iconv')) {
 return iconv($from, $to, $fContents);
 } else {
 return $fContents;
 }
}
/**
* 检查上传的文件类型是否合法
* @access private
* @param string $type 数据
* @return boolean
*/
private function checkType($type) {
 if(!empty($this->allowTypes))
 return in_array(strtolower($type),$this->allowTypes);
 return true;
}
/**
* 检查上传的文件后缀是否合法
* @access private
* @param string $ext 后缀名
* @return boolean
*/
private function checkExt($ext) {
 if(!empty($this->allowExts))
 return in_array(strtolower($ext),$this->allowExts,true);
 return true;
}
/**
* 检查文件大小是否合法
* @access private
* @param integer $size 数据
* @return boolean
*/
private function checkSize($size) {
 return !($size > $this->maxSize) || (-1 == $this->maxSize);
}
/**
* 检查文件是否非法提交
* @access private
* @param string $filename 文件名
* @return boolean
*/
private function checkUpload($filename) {
 return is_uploaded_file($filename);
}
/**
* 取得上传文件的后缀
* @access private
* @param string $filename 文件名
* @return boolean
*/
private function getExt($filename) {
 $pathinfo = pathinfo($filename);
 return $pathinfo['extension'];
}
/**
* 取得上传文件的信息
* @access public
* @return array
*/
public function getUploadFileInfo() {
 return $this->uploadFileInfo;
}
/**
* 取得最后一次错误信息
* @access public
* @return string
*/
public function getErrorMsg() {
 return $this->error;
}

总结:与普通上传的区别在于,它是全部通过阿里云的oss接口来处理文件保存的。普通上传是把本地文件移动到服务器上,而它则是把文件移动到阿里云服务器上。

缩略图思路:

a.上传图片至服务器
b.获取图片进行处理
c.上传处理好的图片至服务器
d.根据配置,删除或者不删除服务器的原图(OSS)

imagePNG($thumbImg,'Uploads/file.png'); // 中转站
// 生成图片
$this->putObject('Uploads/file.png',$thumbname);
unlink('Uploads/file.png');
imagedestroy($thumbImg);

热心网友 时间:2022-04-28 07:14

他这里有一个上传示例的

<?php 
 
/** 
* 加载sdk包以及错误代码包 
*/ 
require_once 'oss_php_sdk/sdk.class.php'; 
$oss_sdk_service = new ALIOSS(); 
$bucket = '你的bucket名字'; 
 
if ((($_FILES["file"]["type"] == "image/gif") 
|| ($_FILES["file"]["type"] == "image/jpeg") 
|| ($_FILES["file"]["type"] == "image/pjpeg")) 
&& ($_FILES["file"]["size"] < 2000000)) 

    if ($_FILES["file"]["error"] > 0) 
    { 
        echo "Return Code: " . $_FILES["file"]["error"] . "<br />"; 
    } 
    else 
    { 
        echo "Upload: " . $_FILES["file"]["name"] . "<br />"; 
        echo "Type: " . $_FILES["file"]["type"] . "<br />"; 
        echo "Size: " . ($_FILES["file"]["size"] / 1024) . " KB<br />"; 
        echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />"; 
 
        $content = ''; 
        $length = 0; 
        $fp = fopen($_FILES["file"]["tmp_name"],'r'); 
        if($fp) 
        { 
            $f = fstat($fp); 
            $length = $f['size']; 
            while(!feof($fp)) 
            { 
                $content .= fgets($fp,8192); 
            } 
        } 
        $upload_file_options = array('content' => $content, 'length' => $length); 
        $upload_file_by_content = $oss_sdk_service->upload_file_by_content($bucket, $_FILES["file"]["name"], $upload_file_options); //$_FILES["file"]["name"]这个就是文件名,你可以自己定义的。
        $img_url = "http://storage.aliyun.com/" . $bucket . "/" . $_FILES["file"]["name"]; 
        echo "Upload successfully! The OSS URL of this file: " . $img_url . "<br />"; 
        echo "If the bucket is public-read, the uploaded image can be shown as:" . "<br />"; 
    echo "<img src=$img_url />"; 
    } 

else 

    echo "Invalid file"; 
}

关于文件名我已经给你注释在代码中了,你试试看

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
邮寄35公斤冰箱多少钱 一个冰箱的物流多少钱 快递一个小冰箱多少钱 冰箱发物流怎么收费 冰箱能发物流多少钱 快递个冰箱大概多少钱 物流冰箱回家不知道费用要多少喔 为什么打开猎豹浏览器以后,系统显示占用了很多内存? 猎豹浏览器手机版视频缓存占手机空间吗 猎豹浏览器隐藏功能有哪些? Php调用手机发短信功能 好做么?PHP短信接口开发 PHP怎么连接数据库短信接口 可以直接调用开源代码PhpSMSAdmin里面发短信的接口吗? php短信接口怎么使用 我有移动提供的短信接口,请问怎么用php调用这些接口发送短信呢? php ci框架怎么对接短信接口 php短信接口是什么? 怎么做的?PHP常用短信接口 PHP短信接口代码详解,修改成能发的 php短信接口如何实现群发... 谁能给个示例的代码啊。。 短信接口怎么更换,PHP代码怎么写? python代码怎么注释掉看 Python代码注释应该怎么写 python代码 每一行给出注释 并解释用法 win764位旗舰版2G的内存够用吗? windows7旗舰版2G内存玩游戏够不够用? 2G内存运行win7够不够? win7 做开发 2G 的内存够用吗 2G的内存能流畅运行WIN7吗? PHP如何使用阿里云oss 求助阿里云服务器上传图片代码php版本 文件上传问题。PHP些的云存储服务器,调用平台接口上传文件(例如阿里云等)。 怎么上传图片到阿里云? 上传图片到阿里云的OSS上,可以吗 阿里云oss 上传及访问问题 oss阿里云怎么设置自动上传文件 discuz怎么设置阿里云oss远程附件 php+mysql怎么实现无限级别分类,数据库怎么设计?一条SQL语句读出数据然后生成数组 PHP+MySQL无限分类语句 php无限级分类ul li如何格式输出? PHP无限级分类怎么查询 PHP无限级分类 大神请进:如何用PHP和MySQL实现无限分类相册 php无限分类怎么弄 PHP无限树形根统计数据 php无限级分类表的建立问题 请教高手:php实现n叉树遍历 php mysql数据库查询语句并输出 PHP MYSQL 查询 汇总数据并输出到页面。