yii使用activeFileField控件实现上传文件与图片的方法_PHP

WBOY
Release: 2016-05-28 11:49:53
Original
1163 people have browsed it

本文实例讲述了yii使用activeFileField控件实现上传文件与图片的方法。分享给大家供大家参考,具体如下:

yii框架提供了activeFileField控件来完成上传文件(当然也包括了上传图片)的操作,下面介绍yii的activeFileField使用方法。

1、函数原型:

代码如下:

public static string activeFileField(CModel $model, string $attribute, array $htmlOptions=array ( ))


2、调用例子:

(1)首先,设置form,这一步一 定要做,把form设置为'multipart/form-data',具体请看我的:

<&#63;php $form=$this->beginWidget('CActiveForm', array(
'id'=>'books-form',
'enableAjaxValidation'=>false,
'htmlOptions'=>array('enctype'=>'multipart/form-data'),
));
&#63;>

Copy after login

(2) 接着,在view下的form里设置:

<div class="row">
<&#63;php echo $form->labelEx($model,'BookImg'); &#63;>
<&#63;php echo CHtml::activeFileField($model,'BookImg'); &#63;>
<&#63;php echo $form->error($model,'BookImg'); &#63;>
</div>

Copy after login

(3) 如果你想预览图片,那么请注意了,可以加上这么一段:

<div class="row">
<&#63;php echo '图片预览' &#63;>
<&#63;php echo '<img  src="http://www.XXXX.com/'.$model- alt="yii使用activeFileField控件实现上传文件与图片的方法_PHP" >BookImg.'"   style="max-width:90%"/>'; &#63;>
</div>

Copy after login

(4)最后,需要在控制类里加上下面的:

if($model->save())
{
$image=CUploadedFile::getInstance($model,'BookImg');
 if (is_object($image) && get_class($image)==='CUploadedFile')
 {
 $image->saveAs("D:/aaa/aa.jpg");//路径必须真实存在,并且如果是linux系统,必须有修改权限
 }
$this->redirect(array('view','id'=>$model->BookId));
}
Copy after login

请注意:这里是添加的时候使用的,修改的话要有所改变。

(5)限制上传的文件必须是图片,还有限制图片大小,那么请到model层里的rules新增这么一句:

array('BookImg', 'file','allowEmpty'=>true,
'types'=>'jpg, gif, png',
'maxSize'=>1024 * 1024 * 1, // 1MB
'tooLarge'=>'The file was larger than 1MB. Please upload a smaller file.',
)

Copy after login

希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!