博客


关于tp6.02官方上传验证功能文档错误指出


public function upload(){
    // 获取表单上传文件
    $files = request()->file();
    try {
        validate(['image'=>'filesize:10240|fileExt:jpg|image:200,200,jpg'])
            ->check($files);
        $savename = [];
        foreach($files as $file) {
            $savename[] = \think\facade\Filesystem::putFile( 'topic', $file);
        }
    } catch (think\exception\ValidateException $e) {
        echo $e->getMessage();
    }
}

以上为官方验证文档

1、filesize改为fileSize

2、think\exception\ValidateException $e 改为 \think\exception\ValidateException $e

请大家注意这两个错误!


上一篇:deepin V20系统rtl8821ce无线网卡驱动安装方法

下一篇:关于tp程序换成php7或以上时出现的问题