图片上传处理

}
 
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;
}
 
 
 

}



















 
 

猜你喜欢

转载自www.cnblogs.com/wangfenphph2/p/9213882.html