以下是程式碼(想問一下該如何修改。自己小白一個,先提前謝謝大家!):
<?php
#namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Requests;
class RequestController extends Controller
{
public function getFileupload(){
$postUrl='/laravelFirst/public/index.php/request/fileupload';
$csrf_field=csrf_field();
$html=<<<FILE
<form action="$postUrl" method="post" enctype="multipart/form-data">
$csrf_field
<input type="file" name="file"><br/>
<input type="submit" value="提交">
</form>
FILE;
return $html;
}
public function postFileupload(Request $request){
if(!$request->hasFile('file')){
exit('上传文件为空!');
}
$file=$request->file('file');
if(!$file->isValid()){
exit('上传文件出错!');
}
$destPath = realpath(public_path('images'));
if(!file_exists($destPath)){
mkdir($destPath,0755,true);
}
$filename=$file->getClientOriginalName();
if(!$file->move($destPath,$filename)){
exit('保存文件失败!');
}
exit('文件上传成功!');
}
}
你印那個destPath看看
laravel上傳檔案還是用
Storage
這個Facade吧,他可以自己處理資料夾建立之類的問題