图片上传处理
}
public function set_images(){
$this->image=[];
$image = $this->request->file('image');
if(!is_array($image)){
$this->image[]=$image;
}else{
$this->image=$image;
}
public function up_local($file){
$info = $file->rule(function(){
return tool::token();
})->move($this->lin_path);
if (empty($info)) {
$e = new apis_exception();
$e->seterror(606);
throw $e;
}
$imgpath=$this->lin_path.$info->getSaveName();
$info=null;
unset($info);
return $imgpath;
}
}

浙公网安备 33010602011771号