上传txt文件到网站根目录,且不重命名
super
2021-01-14 17:37
3172
提交表单,上传input的name为txt
if (!function_exists('uploadTxt')) {
/**
* 上传txt文件
* @return array
* */
function uploadTxt()
{
$file = request()->file('txt');
$info = $file->validate(['size' => 52428800, 'ext' => 'txt'])->move('./', '');
if ($info) {
return ['code' => 200, 'msg' => '上传成功'];
} else {
return ['code' => 500, 'msg' => $file->getError()];// 上传失败获取错误信息
}
}
}
返回200表示上传成功,可以根目录下查看
报错提示 Permission denied 表示public目录没有写入权限,需要给www用户775权限
0 条讨论