thinkphp对上传文件
【摘要】
html
前台html文件 进行数据封装 from表单的参数enctype="multipart/form-data"
<form action="{:U('/News/save_b...
html
前台html文件 进行数据封装 from表单的参数
enctype="multipart/form-data"
<form action="{:U('/News/save_blog')}" method="post" id="myform" name="myform" enctype="multipart/form-data">
- 1
<td>
<input type="file" name="file" style="width: 80%; height: 30px" />
<i class="msg require-red"></i>
</td>
- 1
- 2
- 3
- 4
public function save_blog(){
if (is_uploaded_file ( $_FILES ['file'] ['tmp_name'] )) {
$icon = $_FILES ['file'];
$iconPath = "Public/images/news/" . time () . $icon ['name'];
$data ["file"] ="/$iconPath";
$icon ['name'] = iconv('utf-8','gb2312',$icon ['name']);
$iconPath = "Public/images/news/" .time (). $icon ['name'];
move_uploaded_file ( $icon ['tmp_name'], $iconPath );
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
$icon ['name'] = iconv('utf-8','gb2312',$icon ['name']);
是为了解决文件上传的时候中文乱码的情况
然后然后才能给予正确的移动路径,然后再进行
$iconPath = "Public/images/news/" .time (). $icon ['name'];
move_uploaded_file ( $icon ['tmp_name'], $iconPath );
- 1
- 2
进行判读是增加文件还是编辑文件
$id=I('post.id');
if($id>0){
$map['id']=$id;
$data['add_time']=time();
$res=$this->blog_model->where($map)->save($data);
if($res){
$this->success("编辑成功",U('/News/index'));
}else{
$this->success("编辑失败",U('/News/index'));
}
}else{
$res=$this->blog_model->add($data);
if($res){
$this->success("添加成功",U('/News/index'));
}else{
$this->success("添加失败",U('/News/index'));
}
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
文章来源: hiszm.blog.csdn.net,作者:孙中明,版权归原作者所有,如需转载,请联系作者。
原文链接:hiszm.blog.csdn.net/article/details/79223836
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)