本篇文章主要介紹了yii2.0整合阿里雲oss上傳單一文件的範例,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟著小編過來看看吧
上一篇文章已經介紹瞭如何整合阿里雲oss,這篇主要介紹上傳文件到阿里雲oss。
主要想法:首先檔案要上傳到伺服器,然後把伺服器裡邊的檔案傳到阿里雲oss,成功以後就把檔案資訊寫入資料庫,失敗了就刪除伺服器的檔案。
主要步驟:
0 介紹幾個oss的概念。
accessKeyId ==>> 可以理解為存取阿里雲oss的帳號
accessKeySecret ==>> 可以理解為存取阿里雲oss的密碼
bucket ==>> 可以理解為文件在保存的根目錄
endPoint ==>> 將它放在空間和ossfile中間,就組成了存取文件的url路徑,也是阿里雲圖片的方式。
object ==>> 你的文件傳到了阿里雲oss以後,路徑是什麼,叫什麼名字
看截圖比較容易理解一些:
1 檔案上傳還是涉及mvc,這次從view開始,主要就是展示表單,用來提交檔案。 aliyunoss.php程式碼如下:
<?php use yii\widgets\ActiveForm; ?> <?php $form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]) ?> <?= $form->field($model, 'files')->fileInput() ?> <button>Submit</button> <?php ActiveForm::end() ?>
2 在controller裡邊接收文件,並轉交給model處理。 UploadController的範例程式碼如下:
public function actionTestAliyun() { $model = new UploadForm(); // 实例化上传类 if (Yii::$app->request->isPost) { $model->files = UploadedFile::getInstance($model,'files'); //使用UploadedFile的getInstance方法接收单个文件 $model->setScenario('upload'); // 设置upload场景 $res = $model->uploadfile(); //调用model里边的upload方法执行上传 $err = $model->getErrors(); //获取错误信息 echo "<pre class="brush:php;toolbar:false">"; print_r($res); //打印上传结果 print_r($err); //打印错误信息,方便排错 exit; } return $this->render('aliyunoss',['model'=>$model]); }
3 當控制器把圖片轉移到model檔案UploadForm.php以後,就要先移動檔案到伺服器的上傳目錄,然後在移動到阿里雲。程式碼如下:
<?php /** * Created by PhpStorm. * Description: 阿里oss上传图片 * Author: Weini * Date: 2016/11/17 0017 * Time: 上午 11:34 */ namespace app\models; use Yii; use yii\base\Exception; use yii\base\Model; class UploadForm extends Model { public $files; //用来保存文件 public function scenarios() { return [ 'upload' => ['files'], // 添加上传场景 ]; } public function rules(){ return [ [['files'],'file', 'skipOnEmpty' => false, 'extensions' => 'jpg, png, gif', 'mimeTypes'=>'image/jpeg, image/png, image/gif', 'maxSize'=>1024*1024*10, 'maxFiles'=>1, 'on'=>['upload']], //设置图片的验证规则 ]; } /** * 上传单个文件到阿里云 * @return boolean 上传是否成功 */ public function uploadfile(){ $res['error'] = 1; if ($this->validate()) { $uploadPath = dirname(dirname(__FILE__)).'/web/uploads/'; // 取得上传路径 if (!file_exists($uploadPath)) { @mkdir($uploadPath, 0777, true); } $ext = $this->files->getExtension(); // 获取文件的扩展名 $randnums = $this->getrandnums(); // 生成一个随机数,为了重命名文件 $imageName = date("YmdHis").$randnums.'.'.$ext; // 重命名文件 $ossfile = 'file/'.date("Ymd").'/'.$imageName; // 这里是保存到阿里云oss的文件名和路径。如果只有文件名,就会放到空间的根目录下。 $filePath = $uploadPath.$imageName; // 生成文件的绝对路径 if ($this->files->saveAs($filePath)){ // 上传文件到服务器 $filedata['filename'] = $imageName; // 准备图片信息,保存到数据库 $filedata['filePath'] = $filePath; // 准备图片信息,保存到数据库 $filedata['ossfile'] = $ossfile; // 准备图片信息,保存到数据库 $filedata['userid'] = Yii::$app->user->id; // 准备图片信息,保存到数据库,这个字段必须要,以免其他用户恶意删除别人的图片 $filedata['uploadtime'] = time(); // 准备图片信息,保存到数据库 // 上边这些代码不能照搬,要根据你项目的需求进行相应的修改。反正目的就是记录上传文件的信息 // 老板,这些代码是我搬来的,没仔细看,如果出问题了,你就扣我的奖金吧^_^ $trans = Yii::$app->db->beginTransaction(); // 开启事务 try{ $savefile = Yii::$app->db->createCommand()->insert('file', $filedata)->execute(); //把文件的上传信息写入数据库 $newid = Yii::$app->db->getLastInsertID(); //获取新增文件的id,用于返回。 if ($savefile) { // 如果插入数据库成功 $ossupload = Yii::$app->Aliyunoss->upload($ossfile, $filePath); //调用Aliyunoss组件里边的upload方法把文件上传到阿里云oss if ($ossupload) { // 如果上传成功, $res['error'] = 0; // 准备返回信息 $res['fileid'] = $newid; // 准备返回信息 $res['ossfile'] = $ossfile; // 准备返回信息 $trans->commit(); // 提交事务 } else { // 如果上传失败 unlink($filePath); // 删除服务器上的文件 $trans->rollBack(); // 事务回滚 } } unlink($filePath); // 插入数据库失败,删除服务器上的文件 $trans->rollBack(); // 事务回滚 } catch(Exception $e) { // 出了异常 unlink($filePath); // 删除服务器上的文件 $trans->rollBack(); // 事务回滚 } } } return $res; // 返回上传信息 } /** * 生成随机数 * @return string 随机数 */ protected function getrandnums() { $arr = array(); while (count($arr) < 10) { $arr[] = rand(1, 10); $arr = array_unique($arr); } return implode("", $arr); } }
如果遇到報錯,說沒有檔案上傳,很有可能是因為圖片驗證規則設定maxFiles大於1了,改成1就好了。
請注意,以上程式碼,在本機測試環境下會報curl連線逾時的錯誤,在伺服器上執行是沒有問題的。
以上是yii2.0整合阿里雲oss如何上傳單一檔案的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!