4.3.7 UploadFile类
set():设置属性
get():读取属性
upfile():上传操作
fileInputError():获取上传文件的错误信息
setPath():设置存储路径
setFileName():设置文件名称 不包括 文件路径
setError():设置错误信息
getSysSetPath():根据系统设置返回商品图片保存路径
UploadFile类使用示例:
//
创建上传类
$upload
= new
UploadFile
();
//
删除原图
$upload
->
set
(
'ifremove'
,
true
);
//
设置上传目录
$upload
->
set
(
'default_dir'
,
'upload/'
.
$upload
->
getSysSetPath
());
//
文件最大允许1M
$upload
->
set
(
'max_size'
,
1024
*
1024
);
//
生成两张缩略图,宽高分别为30,300
$upload
->
set
(
'thumb_width'
,
'30,300'
);
$upload
->
set
(
'thumb_height'
,
'30,300'
);
//
两个缩略图名称后面分别追加 "_tiny","_mid"
$upload
->
set
(
'thumb_ext'
,
'_tiny,_mid'
);
//
开始上传
$result
=
$upload
->
upfile
(
$v
);
if(
$result
){
//
得到图片上传后的路径
$img_path
=
$upload
->
getSysSetPath
().
$upload
->
file_name
;
}
Copyright ©2009 - 2014 shopnc.net.All rights reserved.
Powered By ShopNC