91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Yii框架上傳圖片的用法

發布時間:2021-08-26 21:36:07 來源:億速云 閱讀:121 作者:chen 欄目:開發技術

本篇內容介紹了“Yii框架上傳圖片的用法”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

Yii 提供了 CUploadedFile 來上傳文件,比如圖片,或者文檔。

官方關于這個類的介紹 :

CUploadedFile represents the information for an uploaded file.
Call getInstance to retrieve the instance of an uploaded file, and then use saveAs to save it on the server. You may also query other information about the file, including name, tempName, type, size and error.
public properties

PropertyTypeDescriptionDefined By
errorintegerReturns an error code describing the status of this file uploading.CUploadedFile
extensionNamestringthe file extension name for name.CUploadedFile
hasErrorbooleanwhether there is an error with the uploaded file.CUploadedFile
namestringthe original name of the file being uploadedCUploadedFile
sizeintegerthe actual size of the uploaded file in bytesCUploadedFile
tempNamestringthe path of the uploaded file on the server.CUploadedFile
typestringthe MIME-type of the uploaded file (such as "image/gif").CUploadedFile

實現上傳文件,要用到MVC三個層面。

1、 模型層面 M ,把一個字段在rules方法里設置為 file 屬性。

array('url',
    'file',  //定義為file類型
    'allowEmpty'=>true,
    'types'=>'jpg,png,gif,doc,docx,pdf,xls,xlsx,zip,rar,ppt,pptx',  //上傳文件的類型
    'maxSize'=>1024*1024*10,  //上傳大小限制,注意不是php.ini中的上傳文件大小
    'tooLarge'=>'文件大于10M,上傳失敗!請上傳小于10M的文件!'
),

2、視圖層View,這里需要用到CHtml::activeFileField 來生成選擇文件的button,注意是上傳文件,所以在該標單中enctype應該設置為: multupart/form-data

<?php $form=$this->beginWidget('CActiveForm', array(
<span > </span>'id'=>'link-form',
<span > </span>'enableAjaxValidation'=>false,
<span > </span>'htmlOptions' => array('enctype'=>'multipart/form-data'),
)); ?>
<div class="row">
    <?php echo $form->labelEx($model,'url'); ?>
    <?php echo CHtml::activeFileField($model,'url'); ?>
    <?php echo $form->error($model,'url'); ?>
</div>

3、控制層 C

$model=new Link;
if(isset($_POST['Link']))
{
  $model->attributes=$_POST['Link'];
  if(empty($_POST['Link']['name'])){
    $model->name = $model->url;
  }
  $file = CUploadedFile::getInstance($model,'url');
  //獲得一個CUploadedFile的實例
  if(is_object($file)&&get_class($file) === 'CUploadedFile'){
  // 判斷實例化是否成功
    $model->url = './assets/upfile/file_'.time().'_'.rand(0,9999).'.'.$file->extensionName;  //定義文件保存的名稱
  }else{
    $model->url = './assets/upfile/noPic.jpg';
    // 若果失敗則應該是什么圖片
  }
  if($model->save()){
    if(is_object($file)&&get_class($file) === 'CUploadedFile'){
      $file->saveAs($model->url); // 上傳圖片
    }
    $this->redirect(array('view','id'=>$model->lid));
  }
}

“Yii框架上傳圖片的用法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

yii
AI

盐池县| 府谷县| 新建县| 伊川县| 汾西县| 瑞昌市| 中江县| 兴海县| 唐山市| 襄汾县| 隆德县| 饶阳县| 凉山| 丽江市| 尼木县| 临澧县| 哈尔滨市| 兴仁县| 淮阳县| 乌苏市| 华坪县| 青铜峡市| 宁城县| 杭锦后旗| 黄山市| 佛冈县| 杭锦旗| 应用必备| 文成县| 来安县| 勃利县| 高平市| 东港市| 海盐县| 共和县| 卢氏县| 奉贤区| 泸水县| 吴旗县| 肥西县| 林口县|