在tp3.2中使用upload类自定义子目录生成方法
桃子
桃子 2019-02-25 17:08:17
0
2
960
private function savefiles($files,$student_id){
    $config=[
        'rootPath'      =>  WORKING_PATH.FILES_UPLOAD_PATH, //保存根路径
        'subName'       => array('creatSubName',$student_id),
    ];
    $upload = new Upload($config);
    $upload-> subName = array('creatSubName',$student_id);
    $uploadres = $upload->uploadOne($files);
    if ($uploadres){
        return $uploadres;
    }else{
        return false;
    }
}

public function creatSubName($student_id){
    dump("创建名字!");die;
    return $student_id;
}

这样写不进入creatSubName方法,不传入参数也是一样,求指教

桃子
桃子

全部回复(1)
桃子

目前暂时使用的upload 里面的savepath属性进行替代,能够达成效果

private function savefiles($files,$student_id){
    $config=[
        'rootPath'      =>  WORKING_PATH.FILES_UPLOAD_PATH, //保存根路径
        'autoSub'       =>  false, //自动子目录保存文件
        'savePath'       => $student_id.'/'.date('Y-m-d').'/',
    ];
    $upload = new Upload($config);
    $uploadres = $upload->uploadOne($files);
    if ($uploadres){
        return $uploadres;
    }else{
        return false;
    }
}


热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板