程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Yii框架上傳圖片用法總結,yii框架上傳圖片

Yii框架上傳圖片用法總結,yii框架上傳圖片

編輯:關於PHP編程

Yii框架上傳圖片用法總結,yii框架上傳圖片


本文實例講述了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

Property Type Description Defined By error integer Returns an error code describing the status of this file uploading. CUploadedFile extensionName string the file extension name for name. CUploadedFile hasError boolean whether there is an error with the uploaded file. CUploadedFile name string the original name of the file being uploaded CUploadedFile size integer the actual size of the uploaded file in bytes CUploadedFile tempName string the path of the uploaded file on the server. CUploadedFile type string the 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相關內容感興趣的讀者可查看本站專題:《Yii框架入門及常用技巧總結》、《php優秀開發框架總結》、《smarty模板入門基礎教程》、《php日期與時間用法總結》、《php面向對象程序設計入門教程》、《php字符串(string)用法總結》、《php+mysql數據庫操作入門教程》及《php常見數據庫操作技巧匯總》

希望本文所述對大家基於Yii框架的PHP程序設計有所幫助。

您可能感興趣的文章:

  • PHP的Yii框架中過濾器相關的使用總結
  • PHP的Yii框架中View視圖的使用進階
  • 詳解PHP的Yii框架中的Controller控制器
  • YII動態模型(動態表名)支持分析
  • Yii數據庫緩存實例分析
  • Yii開啟片段緩存的方法
  • 詳解PHP的Yii框架中組件行為的屬性注入和方法注入
  • 詳解在PHP的Yii框架中使用行為Behaviors的方法
  • 深入講解PHP的Yii框架中的屬性(Property)
  • 解讀PHP的Yii框架中請求與響應的處理流程
  • YII Framework的filter過濾器用法分析

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved