Yii框架上传图片用法总结
程序员文章站
2023-12-16 19:43:10
本文实例讲述了yii框架上传图片用法。分享给大家供大家参考,具体如下:
yii 提供了 cuploadedfile 来上传文件,比如图片,或者文档。
官方关于这个类的介...
本文实例讲述了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 |
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 style="white-space:pre"> </span>'id'=>'link-form', <span style="white-space:pre"> </span>'enableajaxvalidation'=>false, <span style="white-space:pre"> </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程序设计有所帮助。
推荐阅读
-
Yii框架上传图片用法总结
-
Python的Tornado框架实现图片上传及图片大小修改功能
-
基于ASP.NET+easyUI框架实现图片上传功能(表单)
-
基于ASP.NET+easyUI框架实现图片上传功能(判断格式+即时浏览 )
-
基于ASP.NET+EasyUI框架实现图片上传提交表单功能(js提交图片)
-
YII Framework框架使用YIIC快速创建YII应用之migrate用法实例详解
-
YII Framework框架教程之缓存用法详解
-
YII Framework框架教程之日志用法详解
-
Yii结合CKEditor实现图片上传功能
-
Python的Tornado框架实现图片上传及图片大小修改功能