码迷,mamicode.com
首页 > 其他好文 > 详细

laravel 图片

时间:2019-08-31 19:03:30      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:path   errors   origin   file   return   spec   The   null   data   

/**
* 缩略图上传
*/
public static function addPic()
{
$inputData = request()->all();
$rules = [
‘main_img‘ => [ ‘image‘,‘max:10240‘ ]
];
$validator = Validator::make($inputData,$rules);
if($validator->fails()){
return back()->withErrors($validator)->withInput();
}
$photo = $inputData[‘pic‘];
$file_name = uniqid().‘.‘.$photo->getClientOriginalExtension();
$file_relative_path = ‘/pic/‘.date(‘Y-m-d‘);
$file_path = public_path($file_relative_path);
if (!is_dir($file_path)){
mkdir($file_path);
}
$thumbnail_file_path = $file_path . ‘/thumb_‘.$file_name;
$image = \Image::make($photo)->resize(80, null, function ($constraint) {$constraint->aspectRatio();})->save($thumbnail_file_path);
$file_path .= ‘/‘.$file_name;
$image = \Image::make($photo)->save($file_path);
if($image)
{
return infoReturn(1,‘‘,[‘src‘=>$file_relative_path.‘/‘.$file_name]);
}else{
return infoReturn(0);
}
}

laravel 图片

标签:path   errors   origin   file   return   spec   The   null   data   

原文地址:https://www.cnblogs.com/simadongyang/p/11439850.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!