22. Kiểm tra một file có tồn tại trong request (Determining if a file is present on the request)(ok)
https://viblo.asia/p/tap-16-request-laravel-aWj534Y8K6m
Bạn có thể sử dụng method hasFile
để kiểm tra sự tồn tại của một file trong request hiện tại.
public function post(Request $request)
{
if ($request->hasFile('avatar') {
echo 'Avatar exists';
}
}
Previous21. Lấy file được upload (Retrieving uploaded file) (ok)Next23. Xác thực upload thành công (Validation successful upload) (ok)
Last updated
Was this helpful?