if($_FILES["file"]["error"]!==1)
{
return redirect()->route("change_password")->with("msg","头像上传出错 错误码:".$_FILES["file"]["error"]);
}
else
{
//没有出错
//加限制条件
//判断上传文件类型为png或jpg且大小不超过1024000B
if(($_FILES["file"]["type"]=="image/png"||$_FILES["file"]["type"]=="image/jpeg")&&$_FILES["file"]["size"]<1024000)
{
//地址文件名拼接
$type=explode(".",$_FILES["file"]["name"]);
$filename ="./upload/".$user_id.'-'.date('YmdHis',time()).mt_rand(1000,9999).'.'.$type[1];
//转码,把utf-8转成gb2312,返回转换后的字符串, 或者在失败时返回 FALSE。
$filename =iconv("UTF-8","gb2312",$filename);
//检查文件或目录是否存在
if(file_exists($filename))
{
return redirect()->route("change_password")->with("msg","图片已存在");
}
else
{
$dir = './upload';
is_dir($dir) OR mkdir($dir, 0777, true);
//保存文件, move_uploaded_file 将上传的文件移动到新位置
move_uploaded_file($_FILES["file"]["tmp_name"],$filename);//将临时地址移动到指定地址
if($staff['image']!=null){
if(file_exists($staff['image'])){
unlink($staff['image']);
}
}
$staff->image=$filename;
if($staff->save()){
return redirect()->route("change_password")->with("msg","头像上传成功");
}
}
}
else
{
return redirect()->route("change_password")->with("msg","图片类型只能为JPG或PNG,且大小不能超过1M");
}
}