驗證
簡介
Laravel 提供了幾種不同的方法來驗證應用程式傳入的資料。最常見的方法是使用所有傳入 HTTP 請求上皆可使用的 validate 方法。不過,我們也會討論其他驗證方法。
Laravel 包含許多方便的驗證規則,您可以將其套用到資料上,甚至還能驗證數值在指定的資料庫資料表中是否唯一。我們將詳細介紹其中的每一個驗證規則,以便您熟悉 Laravel 的所有驗證功能。
驗證快速上手
為了學習 Laravel 強大的驗證功能,讓我們來看一個完整的範例,包含驗證表單並將錯誤訊息顯示給使用者。透過閱讀這篇高階概覽,您將能對如何使用 Laravel 驗證傳入的請求資料有一個良好的通盤理解:
定義路由
首先,讓我們假設在 routes/web.php 檔案中定義了以下路由:
use App\Http\Controllers\PostController;
Route::get('/post/create', [PostController::class, 'create']);
Route::post('/post', [PostController::class, 'store']);GET 路由將顯示一個表單供使用者建立新的部落格文章,而 POST 路由則會將新的部落格文章儲存到資料庫中。
建立控制器
接下來,讓我們看看一個簡單的控制器,它負責處理傳入這些路由的請求。我們暫時先讓 store 方法保持空白:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\View\View;
class PostController extends Controller
{
/**
* Show the form to create a new blog post.
*/
public function create(): View
{
return view('post.create');
}
/**
* Store a new blog post.
*/
public function store(Request $request): RedirectResponse
{
// Validate and store the blog post...
$post = /** ... */
return to_route('post.show', ['post' => $post->id]);
}
}撰寫驗證邏輯
現在我們準備好在 store 方法中填入驗證新部落格文章的邏輯。為此,我們將使用 Illuminate\Http\Request 物件所提供的 validate 方法。如果驗證規則通過,您的程式碼將繼續正常執行;然而,如果驗證失敗,則會拋出 Illuminate\Validation\ValidationException 異常,且系統會自動將適當的錯誤回應傳送回給使用者。
如果在傳統的 HTTP 請求期間驗證失敗,則會產生一個重導向至前一個 URL 的回應。如果傳入的請求是 XHR 請求,則會傳回一個包含驗證錯誤訊息的 JSON 回應。
為了更深入了解 validate 方法,讓我們回到 store 方法中:
/**
* Store a new blog post.
*/
public function store(Request $request): RedirectResponse
{
$validated = $request->validate([
'title' => ['required', 'unique:posts', 'max:255'],
'body' => ['required'],
]);
// The blog post is valid...
return redirect('/posts');
}如您所見,驗證規則會被傳入 validate 方法中。不用擔心——所有可用的驗證規則都有詳細文件說明。再次強調,如果驗證失敗,系統會自動產生適當的回應。如果驗證通過,我們的控制器將繼續正常執行。
此外,您可以使用 validateWithBag 方法來驗證請求,並將任何錯誤訊息儲存在命名錯誤袋中:
$validated = $request->validateWithBag('post', [
'title' => ['required', 'unique:posts', 'max:255'],
'body' => ['required'],
]);在首次驗證失敗時停止
有時候,您可能希望在某個屬性首次驗證失敗後,就停止執行該屬性的其他驗證規則。為此,請將 bail 規則指派給該屬性:
$request->validate([
'title' => ['bail', 'required', 'unique:posts', 'max:255'],
'body' => ['required'],
]);在此範例中,如果 title 屬性的 unique 規則驗證失敗,則不會檢查 max 規則。規則將按照它們被指派的順序進行驗證。
關於巢狀屬性的注意事項
如果傳入的 HTTP 請求包含「巢狀」的欄位資料,您可以使用「點」語法在驗證規則中指定這些欄位:
$request->validate([
'title' => ['required', 'unique:posts', 'max:255'],
'author.name' => ['required'],
'author.description' => ['required'],
]);另一方面,如果您的欄位名稱本身就包含一個句點,您可以透過使用反斜線來跳脫該句點,以明確防止其被解析為「點」語法:
$request->validate([
'title' => ['required', 'unique:posts', 'max:255'],
'v1\.0' => ['required'],
]);顯示驗證錯誤訊息
那麼,如果傳入的請求欄位沒有通過指定的驗證規則會發生什麼事?如前所述,Laravel 會自動將使用者重新導向回先前的路徑。此外,所有的驗證錯誤與請求輸入資料都會自動被快閃傳送 (Flashed) 到 session 中。
透過由 web 中介層群組所提供的 Illuminate\View\Middleware\ShareErrorsFromSession 中介層,所有的應用程式視圖 (View) 都會共用一個 $errors 變數。當套用此中介層時,視圖中將總是存在一個 $errors 變數,這讓您可以非常方便地直接假設 $errors 變數已定義且能安全地使用。$errors 變數會是 Illuminate\Support\MessageBag 的執行個體。關於如何使用此物件的更多資訊,請參閱其說明文件。
因此在我們的範例中,當驗證失敗時,使用者會被重新導向到控制器的 create 方法,讓我們能在視圖中顯示錯誤訊息:
<!-- /resources/views/post/create.blade.php -->
<h1>Create Post</h1>
@if ($errors->any())
<div class="alert alert-danger">
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@endif
<!-- Create Post Form -->自訂錯誤訊息
Laravel 內建的驗證規則各自在應用程式的 lang/en/validation.php 檔案中擁有一個錯誤訊息。如果您的應用程式中沒有 lang 目錄,您可以使用 lang:publish Artisan 指令來要求 Laravel 建立該目錄。
在 lang/en/validation.php 檔案中,您會找到每個驗證規則的翻譯項目。您可以根據應用程式的需求,自由修改或變更這些訊息。
此外,您也可以將此檔案複製到其他語言的目錄中,以將訊息翻譯成您應用程式所使用的語言。若要深入瞭解 Laravel 的在地化 (Localization),請參閱完整的在地化說明文件。
⚠️ 警告
預設情況下,Laravel 應用程式骨架不包含 lang 目錄。如果您想自訂 Laravel 的語言檔案,可以透過 lang:publish Artisan 指令來發布它們。
XHR 請求與驗證
在此範例中,我們使用傳統的表單將資料發送到應用程式。然而,許多應用程式會從 JavaScript 驅動的前端接收 XHR 請求。在 XHR 請求期間使用 validate 方法時,Laravel 不會產生重導向回應。相反地,Laravel 會產生一個包含所有驗證錯誤的 JSON 回應。此 JSON 回應將會以 422 HTTP 狀態碼傳送。
@error 指令
您可以使用 @error Blade 指令來快速判斷指定的屬性是否存在驗證錯誤訊息。在 @error 指令內,您可以輸出 $message 變數來顯示該錯誤訊息:
<!-- /resources/views/post/create.blade.php -->
<label for="title">Post Title</label>
<input
id="title"
type="text"
name="title"
class="@error('title') is-invalid @enderror"
/>
@error('title')
<div class="alert alert-danger">{{ $message }}</div>
@enderror如果您正在使用命名錯誤袋,可以將錯誤袋的名稱作為第二個引數傳遞給 @error 指令:
<input ... class="@error('title', 'post') is-invalid @enderror">重新填入表單
當 Laravel 因驗證錯誤而產生重導向回應時,框架會自動將所有請求的輸入資料快閃傳送 (Flash) 到 session 中。這樣一來,您就可以在下一次請求中方便地存取這些輸入資料,並重新填入使用者剛才嘗試提交的表單。
若要從上一次請求中取得快閃儲存的輸入資料,請在 Illuminate\Http\Request 執行個體上呼叫 old 方法。old 方法會從 session 中取出先前快閃儲存的輸入資料:
$title = $request->old('title');Laravel 還提供了一個全域的 old 輔助函式。如果您要在 Blade 模板內顯示舊的輸入資料,使用 old 輔助函式來重新填入表單會更為便利。如果指定的欄位沒有舊的輸入資料,則會回傳 null:
<input type="text" name="title" value="{{ old('title') }}">關於選填欄位的注意事項
預設情況下,Laravel 在應用程式的全域中介層堆疊中包含了 TrimStrings 與 ConvertEmptyStringsToNull 中介層。因此,如果您不希望驗證器將 null 值視為無效,您通常需要將「選填」的請求欄位標記為 nullable。例如:
$request->validate([
'title' => ['required', 'unique:posts', 'max:255'],
'body' => ['required'],
'publish_at' => ['nullable', 'date'],
]);在此範例中,我們指定了 publish_at 欄位可以是 null,或者是一個有效的日期表示。如果沒有在規則定義中加上 nullable 修飾詞,驗證器會將 null 視為無效的日期。
驗證錯誤回應格式
當您的應用程式拋出 Illuminate\Validation\ValidationException 異常,且傳入的 HTTP 請求預期接收 JSON 回應時,Laravel 將會自動為您格式化錯誤訊息,並回傳 422 Unprocessable Entity HTTP 回應。
在下方,您可以檢視驗證錯誤的 JSON 回應格式範例。請注意,巢狀錯誤的鍵值會被扁平化為「點 (dot)」記法格式:
{
"message": "The team name must be a string. (and 4 more errors)",
"errors": {
"team_name": [
"The team name must be a string.",
"The team name must be at least 1 characters."
],
"authorization.role": [
"The selected authorization.role is invalid."
],
"users.0.email": [
"The users.0.email field is required."
],
"users.2.email": [
"The users.2.email must be a valid email address."
]
}
}表單請求(Form request)驗證
建立表單請求
對於更複雜的驗證場景,您可能會希望建立一個「表單請求(Form request)」。表單請求是自訂的請求類別,其中封裝了各自的驗證與授權邏輯。若要建立表單請求類別,您可以使用 make:request Artisan CLI 指令:
php artisan make:request StorePostRequest產生的表單請求類別將會被放置在 app/Http/Requests 目錄中。如果該目錄不存在,在您執行 make:request 指令時會自動建立。Laravel 產生的每個表單請求都包含兩個方法:authorize 與 rules。
正如您所猜測的,authorize 方法負責判定目前通過認證的使用者是否可以執行該請求所代表的動作,而 rules 方法則返回應該套用於該請求資料的驗證規則:
/**
* Get the validation rules that apply to the request.
*
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
*/
public function rules(): array
{
return [
'title' => ['required', 'unique:posts', 'max:255'],
'body' => ['required'],
];
}📌 備註
您可以在 rules 方法的簽章中對您所需的任何依賴進行型別提示(Type-hint)。它們將會自動透過 Laravel 服務容器(service container) 進行解析。
那麼,驗證規則是如何被估算的呢?您只需要在控制器的方法中對該請求進行型別提示即可。傳入的表單請求會在呼叫控制器方法之前進行驗證,這意味著您不需要讓控制器的程式碼充斥著各種驗證邏輯:
/**
* Store a new blog post.
*/
public function store(StorePostRequest $request): RedirectResponse
{
// The incoming request is valid...
// Retrieve the validated input data...
$validated = $request->validated();
// Retrieve a portion of the validated input data...
$validated = $request->safe()->only(['name', 'email']);
$validated = $request->safe()->except(['name', 'email']);
// Store the blog post...
return redirect('/posts');
}如果驗證失敗,系統會產生一個重導向回應,將使用者送回先前的路徑。錯誤訊息也會被暫存(Flash)到 Session 中,以便顯示。如果該請求是 XHR 請求,則會向使用者傳回一個 HTTP 狀態碼為 422 的回應,其中包含 驗證錯誤的 JSON 格式資料。
📌 備註
需要在由 Inertia 驅動的 Laravel 前端加入即時表單請求驗證嗎?請參考 Laravel Precognition.
執行額外驗證
有時您需要在初始驗證完成後執行額外的驗證。您可以使用表單請求的 after 方法來實現這一點。
after 方法應該返回一個由可呼叫對象(Callables)或閉包(Closures)組成的陣列,這些對象將在驗證完成後被呼叫。傳入的可呼叫對象將會接收一個 Illuminate\Validation\Validator 實例,允許您在必要時加入額外的錯誤訊息:
use Illuminate\Validation\Validator;
/**
* Get the "after" validation callables for the request.
*/
public function after(): array
{
return [
function (Validator $validator) {
if ($this->somethingElseIsInvalid()) {
$validator->errors()->add(
'field',
'Something is wrong with this field!'
);
}
}
];
}如上所述,after 方法返回的陣列也可以包含可呼叫的類別(Invokable classes)。這些類別的 __invoke 方法將會接收一個 Illuminate\Validation\Validator 實例:
use App\Validation\ValidateShippingTime;
use App\Validation\ValidateUserStatus;
use Illuminate\Validation\Validator;
/**
* Get the "after" validation callables for the request.
*/
public function after(): array
{
return [
new ValidateUserStatus,
new ValidateShippingTime,
function (Validator $validator) {
//
}
];
}在第一個驗證失敗時停止
透過在您的請求類別加入 StopOnFirstFailure 屬性(Attribute),您可以告知驗證器一旦發生單一驗證失敗,就應該停止驗證所有屬性:
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\Attributes\StopOnFirstFailure;
use Illuminate\Foundation\Http\FormRequest;
#[StopOnFirstFailure]
class StorePostRequest extends FormRequest
{
// ...
}遇未知欄位時失敗
透過在您的請求類別中加入 FailOnUnknownFields 屬性,您可以指示 Laravel 拒絕任何未在該請求驗證規則中定義的傳入欄位:
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\Attributes\FailOnUnknownFields;
use Illuminate\Foundation\Http\FormRequest;
#[FailOnUnknownFields]
class StorePostRequest extends FormRequest
{
public function rules(): array
{
return [
'title' => ['required', 'string'],
'body' => ['required', 'string'],
];
}
}您也可以在您的 AppServiceProvider 中,全域地為所有表單請求啟用此行為:
use Illuminate\Foundation\Http\FormRequest;
/**
* Bootstrap any application services.
*/
public function boot(): void
{
FormRequest::failOnUnknownFields();
}如果需要,您可以透過向屬性傳入 false 來為特定的請求停用此行為:
#[FailOnUnknownFields(false)]
class PublicWebhookRequest extends FormRequest
{
// ...
}拒絕未知欄位可以防止非預期的輸入鍵流向應用程式深處,從而為防範大量指派(Mass-assignment)類型的漏洞提供額外的保護。然而,您仍應設定好 Model 的 $fillable 或 $guarded 屬性,並僅持久化(Persist)信任且已驗證的輸入資料。
自訂重導向位置
當表單請求驗證失敗時,系統會產生一個重導向回應,將使用者送回先前的路徑。然而,您可以自由自訂此行為。若要自訂,您可以在表單請求上使用 RedirectTo 屬性:
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\Attributes\RedirectTo;
use Illuminate\Foundation\Http\FormRequest;
#[RedirectTo('/dashboard')]
class StorePostRequest extends FormRequest
{
// ...
}或者,如果您想將使用者重導向至具名路由(Named route),可以使用 RedirectToRoute 屬性代替:
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\Attributes\RedirectToRoute;
use Illuminate\Foundation\Http\FormRequest;
#[RedirectToRoute('dashboard')]
class StorePostRequest extends FormRequest
{
// ...
}自訂錯誤袋(Error Bag)
當表單請求驗證失敗時,錯誤訊息會被暫存到 default 錯誤袋(Error bag)中。如果您需要將錯誤訊息儲存在不同的 命名錯誤袋 中,可以在表單請求上使用 ErrorBag 屬性:
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\Attributes\ErrorBag;
use Illuminate\Foundation\Http\FormRequest;
#[ErrorBag('login')]
class LoginRequest extends FormRequest
{
// ...
}授權表單請求
表單請求(Form request)類別也包含了一個 authorize 方法。在此方法中,您可以判定目前已驗證的使用者是否真的有權限更新指定的資源。例如,您可以判定使用者是否真的擁有他們嘗試更新的部落格留言。您最有可能在此方法中與您的授權 Gates 與 Policies 進行互動:
use App\Models\Comment;
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
$comment = Comment::find($this->route('comment'));
return $comment && $this->user()->can('update', $comment);
}由於所有的表單請求(Form request)都繼承自 Laravel 的基礎 Request 類別,因此我們可以使用 user 方法來存取目前已驗證的使用者。此外,請注意上述範例中對 route 方法的呼叫。此方法讓您可以存取所呼叫路由中定義的 URI 參數,例如下方範例中的 {comment} 參數:
Route::post('/comment/{comment}');因此,如果您的應用程式正在利用路由模型繫結 (Route Model Binding),您可以透過將解析後的模型作為請求的屬性來存取,從而使您的程式碼更加簡潔:
return $this->user()->can('update', $this->comment);如果 authorize 方法回傳 false,系統會自動回傳一個 403 狀態碼的 HTTP 回應,且您的控制器方法將不會執行。
如果您計畫在應用程式的其他部分處理該請求的授權邏輯,您可以完全移除 authorize 方法,或者直接回傳 true:
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}📌 備註
You may type-hint any dependencies you need within the authorize method's signature. They will automatically be resolved via the Laravel service container.
自訂錯誤訊息
您可以透過覆寫 messages 方法來自訂表單請求(Form request)所使用的錯誤訊息。此方法應回傳一個包含屬性/規則對及其對應錯誤訊息的陣列:
/**
* Get the error messages for the defined validation rules.
*
* @return array<string, string>
*/
public function messages(): array
{
return [
'title.required' => 'A title is required',
'body.required' => 'A message is required',
];
}自訂驗證屬性
許多 Laravel 內建的驗證規則錯誤訊息都包含了一個 :attribute 預留位置。如果您希望驗證訊息中的 :attribute 預留位置被替換為自訂的屬性名稱,您可以透過覆寫 attributes 方法來指定自訂名稱。此方法應回傳一個屬性/名稱對的陣列:
/**
* Get custom attributes for validator errors.
*
* @return array<string, string>
*/
public function attributes(): array
{
return [
'email' => 'email address',
];
}準備驗證的輸入資料
如果您在套用驗證規則之前,需要對請求中的任何資料進行預處理或清理,您可以使用 prepareForValidation 方法:
use Illuminate\Support\Str;
/**
* Prepare the data for validation.
*/
protected function prepareForValidation(): void
{
$this->merge([
'slug' => Str::slug($this->slug),
]);
}同樣地,如果您在驗證完成後需要將任何請求資料正規化,您可以使用 passedValidation 方法:
/**
* Handle a passed validation attempt.
*/
protected function passedValidation(): void
{
$this->replace(['name' => 'Taylor']);
}手動建立驗證器
如果您不想使用請求上的 validate 方法,可以使用 Validator facade 手動建立驗證器實例。該 facade 上的 make 方法會產生一個新的驗證器實例:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;
class PostController extends Controller
{
/**
* Store a new blog post.
*/
public function store(Request $request): RedirectResponse
{
$validator = Validator::make($request->all(), [
'title' => ['required', 'unique:posts', 'max:255'],
'body' => ['required'],
]);
if ($validator->fails()) {
return redirect('/post/create')
->withErrors($validator)
->withInput();
}
// Retrieve the validated input...
$validated = $validator->validated();
// Retrieve a portion of the validated input...
$validated = $validator->safe()->only(['name', 'email']);
$validated = $validator->safe()->except(['name', 'email']);
// Store the blog post...
return redirect('/posts');
}
}傳遞給 make 方法的第一個引數是正在接受驗證的資料。第二個引數則是要套用到該資料的驗證規則陣列。
在判斷請求驗證是否失敗後,您可以使用 withErrors 方法將錯誤訊息閃存 (Flash) 到 Session 中。使用此方法時,重導向後 $errors 變數將會自動與您的視圖 (View) 共享,讓您可以輕鬆地將它們顯示給使用者。withErrors 方法接受驗證器、MessageBag 或 PHP array。
在第一個驗證失敗時停止
stopOnFirstFailure 方法會通知驗證器,一旦發生單一驗證失敗,就應該停止驗證所有屬性:
if ($validator->stopOnFirstFailure()->fails()) {
// ...
}自動重導向
如果您想手動建立驗證器實例,但仍想利用 HTTP 請求的 validate 方法所提供的自動重導向功能,您可以對現有的驗證器實例呼叫 validate 方法。如果驗證失敗,使用者將會自動被重導向,或者在 XHR 請求的情況下,將會回傳 JSON 回應:
Validator::make($request->all(), [
'title' => ['required', 'unique:posts', 'max:255'],
'body' => ['required'],
])->validate();如果驗證失敗,您可以使用 validateWithBag 方法將錯誤訊息儲存在命名錯誤袋中:
Validator::make($request->all(), [
'title' => ['required', 'unique:posts', 'max:255'],
'body' => ['required'],
])->validateWithBag('post');命名錯誤袋
如果單一頁面中有多個表單,您可能會希望為包含驗證錯誤的 MessageBag 命名,以便能夠取得特定表單的錯誤訊息。若要達到此目的,請將名稱作為第二個引數傳遞給 withErrors:
return redirect('/register')->withErrors($validator, 'login');接著,您可以從 $errors 變數中存取該命名的 MessageBag 實例:
{{ $errors->login->first('email') }}自訂錯誤訊息
如果需要,您可以提供自訂的錯誤訊息,讓驗證器實例使用,而不是使用 Laravel 提供的預設錯誤訊息。有幾種指定自訂訊息的方法。第一種,您可以將自訂訊息作為第三個引數傳遞給 Validator::make 方法:
$validator = Validator::make($input, $rules, $messages = [
'required' => 'The :attribute field is required.',
]);在此範例中,:attribute 預留位置將會被替換為接受驗證的實際欄位名稱。您也可以在驗證訊息中使用其他預留位置。例如:
$messages = [
'same' => 'The :attribute and :other must match.',
'size' => 'The :attribute must be exactly :size.',
'between' => 'The :attribute value :input is not between :min - :max.',
'in' => 'The :attribute must be one of the following types: :values',
];為特定屬性指定自訂訊息
有時您可能只想為特定屬性指定自訂的錯誤訊息。您可以使用「點 (Dot)」記法來做到這一點。先指定屬性名稱,後面接著規則:
$messages = [
'email.required' => 'We need to know your email address!',
];指定自訂屬性值
許多 Laravel 內建的錯誤訊息都包含一個 :attribute 預留位置,該預留位置會被替換為接受驗證的欄位或屬性名稱。若要為特定欄位自訂用於替換這些預留位置的值,您可以將自訂屬性的陣列作為第四個引數傳遞給 Validator::make 方法:
$validator = Validator::make($input, $rules, $messages, [
'email' => 'email address',
]);執行額外驗證
有時您需要在初始驗證完成後執行額外驗證。您可以使用驗證器的 after 方法來完成此操作。after 方法接受一個閉包 (Closure) 或一個可呼叫對象 (Callable) 的陣列,這些對象將在驗證完成後被叫用。給定的可呼叫對象將會接收一個 Illuminate\Validation\Validator 實例,允許您在必要時增加額外的錯誤訊息:
use Illuminate\Support\Facades\Validator;
$validator = Validator::make(/* ... */);
$validator->after(function ($validator) {
if ($this->somethingElseIsInvalid()) {
$validator->errors()->add(
'field', 'Something is wrong with this field!'
);
}
});
if ($validator->fails()) {
// ...
}如前所述,after 方法也接受可呼叫對象的陣列,如果您的「後續驗證」邏輯被封裝在可叫用類別 (Invokable classes) 中,這會特別方便,這些類別將會透過其 __invoke 方法接收一個 Illuminate\Validation\Validator 實例:
use App\Validation\ValidateShippingTime;
use App\Validation\ValidateUserStatus;
$validator->after([
new ValidateUserStatus,
new ValidateShippingTime,
function ($validator) {
// ...
},
]);使用驗證過的輸入資料
在使用表單請求(Form request)或手動建立的驗證器實例驗證傳入的請求資料後,您可能會想取得實際通過驗證的傳入請求資料。這可以透過幾種方式來完成。首先,您可以在表單請求或驗證器實例上呼叫 validated 方法。此方法會傳回一個包含已驗證資料的陣列:
$validated = $request->validated();
$validated = $validator->validated();或者,您也可以在表單請求或驗證器實例上呼叫 safe 方法。此方法會傳回 Illuminate\Support\ValidatedInput 的實例。該物件提供了 only、except 與 all 方法,用來取得已驗證資料的子集或完整的已驗證資料陣列:
$validated = $request->safe()->only(['name', 'email']);
$validated = $request->safe()->except(['name', 'email']);
$validated = $request->safe()->all();此外,您也可以對 Illuminate\Support\ValidatedInput 實例進行迴圈迭代,或者像存取陣列一樣存取它:
// Validated data may be iterated...
foreach ($request->safe() as $key => $value) {
// ...
}
// Validated data may be accessed as an array...
$validated = $request->safe();
$email = $validated['email'];如果您想在已驗證的資料中加入額外的欄位,可以呼叫 merge 方法:
$validated = $request->safe()->merge(['name' => 'Taylor Otwell']);如果您想將已驗證的資料轉換為 collection (集合) 實例,可以呼叫 collect 方法:
$collection = $request->safe()->collect();使用錯誤訊息
在呼叫 Validator 實例上的 errors 方法後,您會收到一個 Illuminate\Support\MessageBag 實例,它提供了多種方便的方法來處理錯誤訊息。自動分享給所有視圖 (View) 的 $errors 變數也是 MessageBag 類別的實例。
取得欄位的第一條錯誤訊息
要取得指定欄位的第一條錯誤訊息,請使用 first 方法:
$errors = $validator->errors();
echo $errors->first('email');取得欄位的所有錯誤訊息
如果您需要取得指定欄位的所有錯誤訊息陣列,請使用 get 方法:
foreach ($errors->get('email') as $message) {
// ...
}如果您正在驗證陣列形式的表單欄位,可以使用 * 字元來取得每個陣列元素的所有錯誤訊息:
foreach ($errors->get('attachments.*') as $message) {
// ...
}取得所有欄位的所有錯誤訊息
要取得所有欄位的所有錯誤訊息陣列,請使用 all 方法:
foreach ($errors->all() as $message) {
// ...
}判斷欄位是否存在錯誤訊息
has 方法可用於判斷指定的欄位是否存在任何錯誤訊息:
if ($errors->has('email')) {
// ...
}在語言檔案中指定自訂訊息
Laravel 的每個內建驗證規則都有一個對應的錯誤訊息,位於您應用程式的 lang/en/validation.php 檔案中。如果您的應用程式沒有 lang 目錄,您可以使用 lang:publish Artisan 命令來指示 Laravel 建立它。
在 lang/en/validation.php 檔案中,您會找到每個驗證規則的翻譯項目。您可以根據應用程式的需求自由更改或修改這些訊息。
此外,您可以將此檔案複製到另一個語言目錄,以翻譯為您應用程式所使用的語言。要深入了解 Laravel 的本地化,請參閱完整的本地化文件。
⚠️ 警告
預設情況下,Laravel 應用程式骨架不包含 lang 目錄。如果您想自訂 Laravel 的語言檔案,可以使用 lang:publish Artisan 命令將它們發布出來。
特定屬性的自訂訊息
您可以在應用程式的驗證語言檔案中,為指定的屬性與規則組合自訂錯誤訊息。為此,請將您的自訂訊息加入至應用程式 lang/xx/validation.php 語言檔案的 custom 陣列中:
'custom' => [
'email' => [
'required' => 'We need to know your email address!',
'max' => 'Your email address is too long!'
],
],在語言檔案中指定屬性
許多 Laravel 內建的錯誤訊息都包含一個 :attribute 預留位置,它會被替換為正在進行驗證的欄位或屬性名稱。如果您希望驗證訊息中的 :attribute 部分被替換為自訂的名稱,可以在 lang/xx/validation.php 語言檔案的 attributes 陣列中指定自訂的屬性名稱:
'attributes' => [
'email' => 'email address',
],⚠️ 警告
預設情況下,Laravel 應用程式骨架不包含 lang 目錄。如果您想自訂 Laravel 的語言檔案,可以使用 lang:publish Artisan 命令將它們發布出來。
在語言檔案中指定值
某些 Laravel 內建的驗證規則錯誤訊息包含一個 :value 預留位置,它會被替換為請求屬性的當前值。然而,您有時可能會需要將驗證訊息中的 :value 部分替換為該值的自訂呈現方式。例如,考慮以下規則,它指定如果 payment_type 的值為 cc,則必須填寫信用卡號:
Validator::make($request->all(), [
'credit_card_number' => ['required_if:payment_type,cc']
]);如果此驗證規則失敗,它將產生以下錯誤訊息:
The credit card number field is required when payment type is cc.您可以在 lang/xx/validation.php 語言檔案中定義 values 陣列,以指定更易於閱讀的值呈現方式,而不是直接顯示 cc 作為付款類型的值:
'values' => [
'payment_type' => [
'cc' => 'credit card'
],
],⚠️ 警告
預設情況下,Laravel 應用程式骨架不包含 lang 目錄。如果您想自訂 Laravel 的語言檔案,可以使用 lang:publish Artisan 命令將它們發布出來。
定義此值後,該驗證規則將產生以下錯誤訊息:
The credit card number field is required when payment type is credit card.可用的驗證規則
以下是所有可用驗證規則及其功能的清單:
布林值
字串
Active URLAlphaAlpha DashAlpha NumericAsciiConfirmedCurrent PasswordDifferentDoesnt Start WithDoesnt End WithEmailEnds WithEnumHex ColorInIP AddressJSONLowercaseMAC AddressMaxMinNot InRegular ExpressionNot Regular ExpressionSameSizeStarts WithStringUppercaseURLULIDUUID
數字
BetweenDecimalDifferentDigitsDigits BetweenGreater ThanGreater Than Or EqualIntegerLess ThanLess Than Or EqualMaxMax DigitsMinMin DigitsMultiple OfNumericSameSize
陣列
日期
檔案
資料庫
輔助工具
Any OfBailExcludeExclude IfExclude UnlessExclude WithExclude WithoutFilledMissingMissing IfMissing UnlessMissing WithMissing With AllNullablePresentPresent IfPresent UnlessPresent WithPresent With AllProhibitedProhibited IfProhibited If AcceptedProhibited If DeclinedProhibited UnlessProhibitsRequiredRequired IfRequired If AcceptedRequired If DeclinedRequired UnlessRequired WithRequired With AllRequired WithoutRequired Without AllRequired Array KeysSometimes
accepted
驗證的欄位必須為 "yes"、"on"、1、"1"、true 或 "true"。這對於驗證「服務條款」的同意或類似欄位非常有用。
accepted_if:anotherfield,value,...
如果另一個驗證中的欄位等於指定的值,則驗證的欄位必須為 "yes"、"on"、1、"1"、true 或 "true"。這對於驗證「服務條款」的同意或類似欄位非常有用。
active_url
根據 PHP 函數 dns_get_record,驗證的欄位必須具有有效的 A 或 AAAA 紀錄。在傳遞給 dns_get_record 之前,會先使用 PHP 函數 parse_url 提取所提供 URL 的主機名稱。
after:date
驗證的欄位必須是給定日期之後的值。該日期會被傳入 PHP 的 strtotime 函數,以便轉換為有效的 DateTime 實例:
'start_date' => ['required', 'date', 'after:tomorrow']除了傳遞要由 strtotime 解析的日期字串外,你也可以指定另一個欄位來與該日期進行比較:
'finish_date' => ['required', 'date', 'after:start_date']為了方便起見,可以使用流暢的 date 規則建構器來建構基於日期的規則:
use Illuminate\Validation\Rule;
'start_date' => [
'required',
Rule::date()->after(today()->addDays(7)),
],afterToday 和 todayOrAfter 方法可用於流暢地表示日期,分別代表必須在今天之後,或在今天或今天之後:
'start_date' => [
'required',
Rule::date()->afterToday(),
],after_or_equal:date
驗證的欄位必須是晚於或等於給定日期的值。如需更多資訊,請參閱 after 規則。
為了方便起見,可以使用流暢的 date 規則建構器來建構基於日期的規則:
use Illuminate\Validation\Rule;
'start_date' => [
'required',
Rule::date()->afterOrEqual(today()->addDays(7)),
],anyOf
Rule::anyOf 驗證規則允許你指定驗證的欄位必須滿足任何給定的驗證規則集。例如,以下規則將驗證 username 欄位必須是電子郵件地址,或者是長度至少為 6 個字元的英數字元字串(包含破折號):
use Illuminate\Validation\Rule;
'username' => [
'required',
Rule::anyOf([
['string', 'email'],
['string', 'alpha_dash', 'min:6'],
]),
],alpha
驗證的欄位必須完全是包含在 \p{L} 和 \p{M} 中的 Unicode 字母字元。
若要將此驗證規則限制為 ASCII 範圍內的字元(a-z 和 A-Z),你可以為該驗證規則提供 ascii 選項:
'username' => ['alpha:ascii'],alpha_dash
驗證的欄位必須完全是包含在 \p{L}、\p{M}、\p{N} 中的 Unicode 字母與數字字元,以及 ASCII 破折號 (-) 和 ASCII 底線 (_)。
若要將此驗證規則限制為 ASCII 範圍內的字元(a-z、A-Z 和 0-9),您可以為該驗證規則提供 ascii 選項:
'username' => ['alpha_dash:ascii'],alpha_num
驗證的欄位必須完全是包含在 \p{L}、\p{M} 和 \p{N} 中的 Unicode 字母與數字字元。
若要將此驗證規則限制為 ASCII 範圍內的字元(a-z、A-Z 和 0-9),您可以為該驗證規則提供 ascii 選項:
'username' => ['alpha_num:ascii'],array
驗證的欄位必須是一個 PHP array。
當為 array 規則提供額外的值時,輸入陣列中的每個鍵 (Key) 必須存在於提供給該規則的值清單中。在以下範例中,輸入陣列中的 admin 鍵是無效的,因為它未包含在提供給 array 規則的值清單中:
use Illuminate\Support\Facades\Validator;
$input = [
'user' => [
'name' => 'Taylor Otwell',
'username' => 'taylorotwell',
'admin' => true,
],
];
Validator::make($input, [
'user' => ['array:name,username'],
]);一般來說,您應該始終指定允許存在於陣列中的陣列鍵。
ascii
驗證的欄位必須完全是 7 位元 (7-bit) 的 ASCII 字元。
bail
在欄位遇到第一次驗證失敗後,即停止對該欄位執行後續的驗證規則。
雖然 bail 規則只會在遇到驗證失敗時停止驗證特定欄位,但 stopOnFirstFailure 方法會通知驗證器,一旦發生單一驗證失敗,就應該停止驗證所有屬性:
if ($validator->stopOnFirstFailure()->fails()) {
// ...
}before:date
驗證的欄位必須是指定日期之前的值。這些日期將會被傳入 PHP 的 strtotime 函式中,以便轉換為有效的 DateTime 實例。此外,就像 after 規則一樣,也可以提供另一個要驗證的欄位名稱作為 date 的值。
為了方便起見,也可以使用流暢的 date 規則建構器來建立基於日期的規則:
use Illuminate\Validation\Rule;
'start_date' => [
'required',
Rule::date()->before(today()->subDays(7)),
],beforeToday 和 todayOrBefore 方法可用於流暢地表示日期必須分別在今天之前,或在今天及今天之前:
'start_date' => [
'required',
Rule::date()->beforeToday(),
],before_or_equal:date
驗證的欄位必須是小於或等於指定日期的值。這些日期將會被傳入 PHP 的 strtotime 函式中,以便轉換為有效的 DateTime 實例。此外,就像 after 規則一樣,也可以提供另一個要驗證的欄位名稱作為 date 的值。
為了方便起見,也可以使用流暢的 date 規則建構器來建立基於日期的規則:
use Illuminate\Validation\Rule;
'start_date' => [
'required',
Rule::date()->beforeOrEqual(today()->subDays(7)),
],between:min,max
驗證的欄位大小必須在指定的 min 和 max 之間(包含)。字串、數值、陣列和檔案的評估方式與 size 規則相同。
boolean
驗證的欄位必須能夠被轉換為布林值。接受的輸入有 true、false、1、0、"1" 和 "0"。
您可以使用 strict 參數來讓欄位只有在值為 true 或 false 時才被視為有效:
'foo' => ['boolean:strict']confirmed
驗證的欄位必須有一個相符的 {field}_confirmation 欄位。例如,如果驗證的欄位是 password,則輸入資料中必須存在一個相符的 password_confirmation 欄位。
您也可以傳入自訂的確認欄位名稱。例如,confirmed:repeat_username 將會預期 repeat_username 欄位與驗證的欄位一致。
contains:foo,bar,...
驗證的欄位必須是一個包含所有指定參數值的陣列。由於此規則通常需要您對陣列進行 implode,因此可以使用 Rule::contains 方法來流暢地建構此規則:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
Validator::make($data, [
'roles' => [
'required',
'array',
Rule::contains(['admin', 'editor']),
],
]);doesnt_contain:foo,bar,...
驗證的欄位必須是一個不包含任何指定參數值的陣列。由於此規則通常需要您對陣列進行 implode,因此可以使用 Rule::doesntContain 方法來流暢地建構此規則:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
Validator::make($data, [
'roles' => [
'required',
'array',
Rule::doesntContain(['admin', 'editor']),
],
]);current_password
驗證的欄位必須與已認證使用者的密碼相符。您可以使用該規則的第一個參數來指定 認證 guard:
'password' => ['current_password:api']date
驗證的欄位必須是依據 PHP strtotime 函式解析為有效且非相對關係的日期。
date_equals:date
驗證的欄位必須等於指定的日期。這些日期將會被傳入 PHP 的 strtotime 函式中,以便轉換為有效的 DateTime 實例。
date_format:format,...
驗證的欄位必須符合指定的 format 格式之一。驗證欄位時,您應該使用 date 或 date_format 其中之一,而不是兩者都使用。此驗證規則支援 PHP DateTime 類別所支援的所有格式。
為了方便起見,可以使用流暢的 date 規則建構器來建立基於日期的規則:
use Illuminate\Validation\Rule;
'start_date' => [
'required',
Rule::date()->format('Y-m-d'),
],decimal:min,max
驗證的欄位必須是數值,並且必須包含指定的小數位數:
// Must have exactly two decimal places (9.99)...
'price' => ['decimal:2']
// Must have between 2 and 4 decimal places...
'price' => ['decimal:2,4']declined
驗證的欄位必須是 "no"、"off"、0、"0"、false 或 "false"。
declined_if:anotherfield,value,...
如果另一個驗證中的欄位等於指定的值,則驗證的欄位必須是 "no"、"off"、0、"0"、false 或 "false"。
different:field
驗證的欄位必須與 field 具有不同的值。
digits:value
驗證中的整數長度必須剛好為 value。
digits_between:min,max
被驗證的整數長度必須介於指定的 min 與 max 之間。
dimensions
被驗證的檔案必須是符合該規則參數所指定尺寸限制的圖片:
'avatar' => ['dimensions:min_width=100,min_height=200']可用的限制條件為:min_width、max_width、min_height、max_height、width、height、ratio、min_ratio、max_ratio。
ratio(比例)限制應表示為寬度除以高度。這可以透過像 3/2 這樣的分數或像 1.5 這樣的浮點數來指定:
'avatar' => ['dimensions:ratio=3/2']min_ratio 與 max_ratio 限制可用於定義可接受的長寬比範圍:
'avatar' => ['dimensions:min_ratio=1/2,max_ratio=3/2']由於此規則需要多個引數,因此使用 Rule::dimensions 方法來流暢地建構規則通常會更方便:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
Validator::make($data, [
'avatar' => [
'required',
Rule::dimensions()
->maxWidth(1000)
->maxHeight(500)
->ratio(3 / 2),
],
]);您也可以使用 minRatio、maxRatio 與 ratioBetween 方法來流暢地定義比例限制:
Rule::dimensions()->ratioBetween(min: 1 / 2, max: 3 / 2)distinct
驗證陣列時,被驗證的欄位不能有任何重複的值:
'foo.*.id' => ['distinct']預設情況下,distinct 使用鬆散的變數比較。若要使用嚴格比較,您可以在驗證規則定義中加入 strict 參數:
'foo.*.id' => ['distinct:strict']您可以在驗證規則的引數中加入 ignore_case,使該規則忽略大小寫的差異:
'foo.*.id' => ['distinct:ignore_case']doesnt_start_with:foo,bar,...
被驗證的欄位開頭不能是指定值之中的任何一個。
doesnt_end_with:foo,bar,...
被驗證的欄位結尾不能是指定值之中的任何一個。
email
被驗證的欄位格式必須為電子郵件地址。此驗證規則使用 egulias/email-validator 套件來驗證電子郵件地址。預設會套用 RFCValidation 驗證器,但您也可以套用其他驗證樣式:
'email' => ['email:rfc,dns']上方的範例將套用 RFCValidation 與 DNSCheckValidation 驗證。以下是您可以套用的完整驗證樣式列表:
rfc:RFCValidation- 根據 支援的 RFC 驗證電子郵件地址。strict:NoRFCWarningsValidation- 根據 支援的 RFC 驗證電子郵件,並在發現警告時(例如:結尾句點和多個連續句點)判定為驗證失敗。dns:DNSCheckValidation- 確保電子郵件地址的網域具有有效的 MX 紀錄。spoof:SpoofCheckValidation- 確保電子郵件地址不包含同形文字(Homograph)或具欺騙性的 Unicode 字元。filter:FilterEmailValidation- 確保電子郵件地址符合 PHP 的filter_var函數規範。filter_unicode:FilterEmailValidation::unicode()- 確保電子郵件地址符合 PHP 的filter_var函數規範,並允許部分 Unicode 字元。
為了方便起見,您可以使用流暢的規則建構器來建立電子郵件驗證規則:
use Illuminate\Validation\Rule;
$request->validate([
'email' => [
'required',
Rule::email()
->rfcCompliant(strict: false)
->validateMxRecord()
->preventSpoofing()
],
]);⚠️ 警告
dns 與 spoof 驗證器需要 PHP 的 intl 擴充功能。
encoding:encoding_type
被驗證的欄位必須符合指定的字元編碼。此規則使用 PHP 的 mb_check_encoding 函數來驗證給定檔案或字串值的編碼。為了方便起見,可以使用 Laravel 流暢的檔案規則建構器來建立 encoding 規則:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rules\File;
Validator::validate($input, [
'attachment' => [
'required',
File::types(['csv'])
->encoding('utf-8'),
],
]);ends_with:foo,bar,...
被驗證的欄位結尾必須是指定值之中的任何一個。
enum
Enum 規則是一個基於類別的規則,用於驗證被驗證的欄位是否包含有效的 enum(列舉)值。Enum 規則接受 enum 的名稱作為其唯一的建構子引數。在驗證基本型別的值時,應為 Enum 規則提供一個 Backed Enum:
use App\Enums\ServerStatus;
use Illuminate\Validation\Rule;
$request->validate([
'status' => [Rule::enum(ServerStatus::class)],
]);Enum 規則的 only 與 except 方法可用於限制哪些 enum 案件應被視為有效:
Rule::enum(ServerStatus::class)
->only([ServerStatus::Pending, ServerStatus::Active]);
Rule::enum(ServerStatus::class)
->except([ServerStatus::Pending, ServerStatus::Active]);when 方法可用於有條件地修改 Enum 規則:
use Illuminate\Support\Facades\Auth;
use Illuminate\Validation\Rule;
Rule::enum(ServerStatus::class)
->when(
Auth::user()->isAdmin(),
fn ($rule) => $rule->only(...),
fn ($rule) => $rule->only(...),
);exclude
被驗證的欄位將會排除在 validate 與 validated 方法所回傳的請求資料之外。
exclude_if:anotherfield,value
如果 anotherfield 欄位等於 value,被驗證的欄位將會排除在 validate 與 validated 方法所回傳的請求資料之外。
如果需要複雜的條件排除邏輯,您可以使用 Rule::excludeIf 方法。此方法接受一個布林值或一個閉包。當傳入閉包時,該閉包應回傳 true 或 false 以指示是否排除被驗證的欄位:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
Validator::make($request->all(), [
'role_id' => [Rule::excludeIf($request->user()->is_admin)],
]);
Validator::make($request->all(), [
'role_id' => [Rule::excludeIf(fn () => $request->user()->is_admin)],
]);exclude_unless:anotherfield,value
除非 anotherfield 欄位等於 value,否則被驗證的欄位將會排除在 validate 與 validated 方法所回傳的請求資料之外。如果 value 為 null (exclude_unless:name,null),除非比較欄位為 null 或請求資料中缺少該比較欄位,否則被驗證的欄位將會被排除。
如果需要複雜的條件排除邏輯,您可以使用 Rule::excludeUnless 方法。此方法接受一個布林值或一個閉包。當傳入閉包時,該閉包應回傳 true 或 false 以指示是否不排除被驗證的欄位:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
Validator::make($request->all(), [
'role_id' => [Rule::excludeUnless($request->user()->is_admin)],
]);
Validator::make($request->all(), [
'role_id' => [Rule::excludeUnless(fn () => $request->user()->is_admin)],
]);exclude_with:anotherfield
如果指定的 anotherfield 欄位存在,則驗證中的欄位將會被排除在 validate and validated 方法所傳回的請求資料之外。
exclude_without:anotherfield
如果指定的 anotherfield 欄位不存在,則驗證中的欄位將會被排除在 validate and validated 方法所傳回的請求資料之外。
exists:table,column
驗證中的欄位值必須存在於指定的資料庫資料表中。
Basic Usage of Exists Rule
'state' => ['exists:states']如果未指定 column 選項,則會使用該欄位名稱。因此,在此情況下,該規則將驗證 states 資料庫資料表是否包含一筆 state 欄位值與請求的 state 屬性值相符的記錄。
Specifying a Custom Column Name
您可以透過在資料庫資料表名稱後方加上欄位名稱,來明確指定驗證規則應使用的資料庫欄位名稱:
'state' => ['exists:states,abbreviation']有時,您可能需要指定用於 exists 查詢的特定資料庫連線。您可以透過在資料表名稱前加上連線名稱來達成此目的:
'email' => ['exists:connection.staff,email']除了直接指定資料表名稱外,您也可以指定用於確定資料表名稱的 Eloquent 模型:
'user_id' => ['exists:App\Models\User,id']如果您想自訂驗證規則執行的查詢,可以使用 Rule 類別來流暢地定義規則。
use Illuminate\Database\Query\Builder;
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
Validator::make($data, [
'email' => [
'required',
Rule::exists('staff')->where(function (Builder $query) {
$query->where('account_id', 1);
}),
],
]);您可以透過向 exists 方法提供第二個引數(欄位名稱),來明確指定由 Rule::exists 方法產生的 exists 規則所應使用的資料庫欄位名稱:
'state' => [Rule::exists('states', 'abbreviation')],有時,您可能希望驗證某個陣列的值是否存在於資料庫中。您可以透過同時將 exists 與 array 規則新增到要驗證的欄位來達成此目的:
'states' => ['array', Rule::exists('states', 'abbreviation')],當這兩個規則都被指派給某個欄位時,Laravel 將會自動建構單一查詢,以確定所有指定的值是否存在於指定的資料表中。
extensions:foo,bar,...
驗證中的檔案必須具有對應於所列副檔名之一的使用者自訂副檔名:
'photo' => ['required', 'extensions:jpg,png'],⚠️ 警告
You should never rely on validating a file by its user-assigned extension alone. This rule should typically always be used in combination with the mimes or mimetypes rules.
file
驗證中的欄位必須是成功上傳的檔案。
filled
驗證中的欄位在存在時不得為空。
gt:field
驗證中的欄位必須大於指定的 field 或 value。這兩個欄位必須是相同的型別。字串、數值、陣列和檔案的評估方式與 size 規則相同。
gte:field
驗證中的欄位必須大於或等於指定的 field 或 value。這兩個欄位必須是相同的型別。字串、數值、陣列和檔案的評估方式與 size 規則相同。
hex_color
驗證中的欄位必須包含 hexadecimal 格式的有效顏色值。
image
驗證中的檔案必須是圖片 (jpg, jpeg, png, bmp, gif, 或 webp)。
⚠️ 警告
By default, the image rule does not allow SVG files due to the possibility of XSS vulnerabilities. If you need to allow SVG files, you may provide the allow_svg directive to the image rule (image:allow_svg).
in:foo,bar,...
驗證中的欄位值必須包含在指定的清單中。由於此規則通常需要您 implode 陣列,因此可以使用 Rule::in 方法來流暢地建構規則:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
Validator::make($data, [
'zones' => [
'required',
Rule::in(['first-zone', 'second-zone']),
],
]);當 in 規則與 array 規則結合使用時,輸入陣列中的每個值都必須存在於提供給 in 規則的值清單中。在以下範例中,輸入陣列中的 LAS 機場代碼是無效的,因為它不包含在提供給 in 規則的機場清單中:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
$input = [
'airports' => ['NYC', 'LAS'],
];
Validator::make($input, [
'airports' => [
'required',
'array',
],
'airports.*' => Rule::in(['NYC', 'LIT']),
]);in_array:anotherfield.*
驗證中的欄位值必須存在於 anotherfield 的值中。
in_array_keys:value.*
驗證中的欄位必須是一個陣列,且該陣列中至少包含一個指定的 values 作為鍵值 (key):
'config' => ['array', 'in_array_keys:timezone']integer
驗證中的欄位必須是整數。
您可以使用 strict 參數,如此一來只有當該欄位的型別為 integer 時才會被視為有效。包含整數值的字串將會被視為無效:
'age' => ['integer:strict']⚠️ 警告
This validation rule does not verify that the input is of the "integer" variable type, only that the input is of a type accepted by PHP's FILTER_VALIDATE_INT rule. If you need to validate the input as being a number please use this rule in combination with the numeric validation rule.
ip
驗證中的欄位必須是 IP 位址。
ipv4
驗證中的欄位必須是 IPv4 位址。
ipv6
驗證中的欄位必須是 IPv6 位址。
json
驗證中的欄位必須是有效的 JSON 字串。
lt:field
驗證中的欄位必須小於指定的 field。這兩個欄位必須是相同的型別。字串、數值、陣列和檔案的評估方式與 size 規則相同。
lte:field
驗證中的欄位必須小於或等於指定的 field。這兩個欄位必須是相同的型別。字串、數值、陣列和檔案的評估方式與 size 規則相同。
lowercase
驗證中的欄位必須是小寫。
list
驗證中的欄位必須是一個列表(List)形式的陣列。如果一個陣列的鍵值是由 0 到 count($array) - 1 的連續數字所組成,則該陣列會被視為一個列表。
mac_address
驗證中的欄位必須是 MAC 位址。
max:value
驗證中的欄位必須小於或等於最大值 value。字串、數值、陣列和檔案的評估方式與 size 規則相同。
max_digits:value
驗證中的整數其最大長度必須為 value。
mimetypes:text/plain,...
被驗證的檔案必須符合指定的 MIME 類型之一:
'video' => ['mimetypes:video/avi,video/mpeg,video/quicktime'],
'media' => ['mimetypes:image/*,video/*'],為了解析上傳檔案的 MIME 類型,系統會讀取該檔案的內容,框架會嘗試偵測其 MIME 類型,這可能與用戶端提供的 MIME 類型不同。
mimes:foo,bar,...
被驗證的檔案必須擁有與清單中附檔名之一相對應的 MIME 類型:
'photo' => ['mimes:jpg,bmp,png']雖然你只需要指定附檔名,但此規則實際上是透過讀取檔案內容並偵測其 MIME 類型來進行驗證。完整的 MIME 類型及其對應附檔名列表可以在以下位置找到:
https://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
MIME 類型與附檔名
此驗證規則不會檢查 MIME 類型與使用者為檔案指定的附檔名是否一致。例如,即使檔案名稱為 photo.txt,只要它包含有效的 PNG 內容,mimes:png 驗證規則就會將其視為有效的 PNG 圖片。如果你想要驗證使用者指定的檔案附檔名,可以使用 extensions 規則。
min:value
被驗證的欄位必須大於或等於最小的 value。字串、數值、陣列和檔案的評估方式與 size 規則相同。
min_digits:value
被驗證的整數必須具有至少 value 的長度。
multiple_of:value
被驗證的欄位必須是 value 的倍數。
missing
被驗證的欄位不得存在於輸入資料中。
missing_if:anotherfield,value,...
如果 anotherfield 欄位等於任何 value,則被驗證的欄位不得存在。
missing_unless:anotherfield,value
除非 anotherfield 欄位等於任何 value,否則被驗證的欄位不得存在。
missing_with:foo,bar,...
被驗證的欄位_只有在_其他任一指定欄位存在時,才不得存在。
missing_with_all:foo,bar,...
被驗證的欄位_只有在_所有其他指定欄位都存在時,才不得存在。
not_in:foo,bar,...
被驗證的欄位值不得包含在指定的列表中。可以使用 Rule::notIn 方法以流暢的鏈式寫法來建立此規則:
use Illuminate\Validation\Rule;
Validator::make($data, [
'toppings' => [
'required',
Rule::notIn(['sprinkles', 'cherries']),
],
]);not_regex:pattern
被驗證的欄位值不得符合指定的正規表示式。
此規則內部使用 PHP 的 preg_match 函式。指定的模式應遵循 preg_match 所需的相同格式,因此也必須包含有效的定界符。例如:'email' => ['not_regex:/^.+$/i']。
nullable
被驗證的欄位值可以為 null。
numeric
被驗證的欄位必須是數值。
你可以使用 strict 參數,只有在欄位值為整數或浮點數型別時才視為有效。數值字串將被視為無效:
'amount' => ['numeric:strict']present
被驗證的欄位必須存在於輸入資料中。
present_if:anotherfield,value,...
如果 anotherfield 欄位等於任何 value,則被驗證的欄位必須存在。
present_unless:anotherfield,value
除非 anotherfield 欄位等於任何 value,否則被驗證的欄位必須存在。
present_with:foo,bar,...
被驗證的欄位_只有在_其他任一指定欄位存在時,才必須存在。
present_with_all:foo,bar,...
被驗證的欄位_只有在_所有其他指定欄位都存在時,才必須存在。
prohibited
被驗證的欄位必須不存在或為空。符合以下標準之一即被視為「空」:
- 值為
null。 - 值為空字串。
- 值為空陣列或空的
Countable物件。 - 值為路徑為空的上傳檔案。
prohibited_if:anotherfield,value,...
如果 anotherfield 欄位等於任何 value,則被驗證的欄位必須不存在或為空。符合以下標準之一即被視為「空」:
- 值為
null。 - 值為空字串。
- 值為空陣列或空的
Countable物件。 - 值為路徑為空的上傳檔案。
如果需要更複雜的條件式禁止邏輯,可以使用 Rule::prohibitedIf 方法。此方法接受布林值或閉包。當傳入閉包時,閉包應回傳 true 或 false 以指示是否應禁止該被驗證欄位:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
Validator::make($request->all(), [
'role_id' => [Rule::prohibitedIf($request->user()->is_admin)],
]);
Validator::make($request->all(), [
'role_id' => [Rule::prohibitedIf(fn () => $request->user()->is_admin)],
]);prohibited_if_accepted:anotherfield,...
如果 anotherfield 欄位等於 "yes"、"on"、1、"1"、true 或 "true",則被驗證的欄位必須不存在或為空。
prohibited_if_declined:anotherfield,...
如果 anotherfield 欄位等於 "no"、"off"、0、"0"、false 或 "false",則被驗證的欄位必須不存在或為空。
prohibited_unless:anotherfield,value,...
除非 anotherfield 欄位等於任何 value,否則被驗證的欄位必須不存在或為空。符合以下標準之一即被視為「空」:
- 值為
null。 - 值為空字串。
- 值為空陣列或空的
Countable物件。 - 值為路徑為空的上傳檔案。
如果需要更複雜的條件式禁止邏輯,可以使用 Rule::prohibitedUnless 方法。此方法接受布林值或閉包。當傳入閉包時,閉包應回傳 true 或 false 以指示是否不應禁止該被驗證欄位:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
Validator::make($request->all(), [
'role_id' => [Rule::prohibitedUnless($request->user()->is_admin)],
]);
Validator::make($request->all(), [
'role_id' => [Rule::prohibitedUnless(fn () => $request->user()->is_admin)],
]);prohibits:anotherfield,...
如果被驗證的欄位不是不存在或不為空,則 anotherfield 中的所有欄位都必須不存在或為空。符合以下標準之一即被視為「空」:
- 值為
null。 - 值為空字串。
- 值為空陣列或空的
Countable物件。 - 值為路徑為空的上傳檔案。
regex:pattern
待驗證的欄位必須符合給定的正規表示式。
在內部,此規則使用 PHP 的 preg_match 函數。指定的模式應遵守 preg_match 所要求的相同格式,因此也必須包含有效的定界符。例如:'email' => ['regex:/^.+@.+$/i']。
required
待驗證的欄位必須存在於輸入資料中且不為空。若符合以下任一標準,則該欄位會被視為「空」:
- 值為
null。 - 值為空字串。
- 值為空陣列或空的
Countable物件。 - 值為沒有路徑的上傳檔案。
required_if:anotherfield,value,...
如果 anotherfield 欄位等於任何 value,則待驗證的欄位必須存在且不為空。
如果您想為 required_if 規則建構更複雜的條件,可以使用 Rule::requiredIf 方法。此方法接受布林值或閉包。當傳入閉包時,該閉包應返回 true 或 false 以指示待驗證的欄位是否為必填:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
Validator::make($request->all(), [
'role_id' => [Rule::requiredIf($request->user()->is_admin)],
]);
Validator::make($request->all(), [
'role_id' => [Rule::requiredIf(fn () => $request->user()->is_admin)],
]);required_if_accepted:anotherfield,...
如果 anotherfield 欄位等於 "yes"、"on"、1、"1"、true 或 "true",則待驗證的欄位必須存在且不為空。
required_if_declined:anotherfield,...
如果 anotherfield 欄位等於 "no"、"off"、0、"0"、false 或 "false",則待驗證的欄位必須存在且不為空。
required_unless:anotherfield,value,...
除非 anotherfield 欄位等於任何 value,否則待驗證的欄位必須存在且不為空。這也意味著,除非 value 為 null,否則 anotherfield 必須存在於請求資料中。如果 value 為 null (required_unless:name,null),則待驗證的欄位將是必填的,除非比較欄位為 null 或請求資料中缺少該比較欄位。
如果您想為 required_unless 規則建構更複雜的條件,可以使用 Rule::requiredUnless 方法。此方法接受布林值或閉包。當傳入閉包時,該閉包應返回 true 或 false 以指示待驗證的欄位是否不為必填:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
Validator::make($request->all(), [
'role_id' => [Rule::requiredUnless($request->user()->is_admin)],
]);
Validator::make($request->all(), [
'role_id' => [Rule::requiredUnless(fn () => $request->user()->is_admin)],
]);required_with:foo,bar,...
僅當 任何其他指定欄位存在且不為空時,待驗證的欄位才必須存在且不為空。
required_with_all:foo,bar,...
僅當 所有其他指定欄位皆存在且不為空時,待驗證的欄位才必須存在且不為空。
required_without:foo,bar,...
僅當 任何其他指定欄位為空或不存在時,待驗證的欄位才必須存在且不為空。
required_without_all:foo,bar,...
僅當 所有其他指定欄位皆為空或不存在時,待驗證的欄位才必須存在且不為空。
required_array_keys:foo,bar,...
待驗證的欄位必須是一個陣列,並且至少包含指定的鍵值。
same:field
給定的 field 必須與待驗證的欄位一致。
size:value
待驗證的欄位大小必須符合給定的 value。對於字串資料,value 對應字元數。對於數值資料,value 對應給定的整數值(該屬性必須同時具有 numeric 或 integer 規則)。對於陣列,size 對應陣列的 count。對於檔案,size 對應檔案大小(以 KB 為單位)。讓我們看一些範例:
// Validate that a string is exactly 12 characters long...
'title' => ['size:12'];
// Validate that a provided integer equals 10...
'seats' => ['integer', 'size:10'];
// Validate that an array has exactly 5 elements...
'tags' => ['array', 'size:5'];
// Validate that an uploaded file is exactly 512 kilobytes...
'image' => ['file', 'size:512'];starts_with:foo,bar,...
待驗證的欄位必須以給定的值之一開頭。
string
待驗證的欄位必須是字串。如果您希望允許該欄位也可以為 null,則應為該欄位分配 nullable 規則。
為了方便起見,字串驗證規則也可以使用流暢的 Rule::string() 規則建構器來建構:
use Illuminate\Validation\Rule;
'title' => [
'required',
Rule::string()
->min(3)
->max(255)
->alphaDash(ascii: true),
],字串規則建構器提供了常見字串約束的方法,包括 alpha、alphaDash、alphaNumeric、ascii、between、doesntEndWith、doesntStartWith、endsWith、exactly、lowercase、max、min、startsWith 和 uppercase。由於規則建構器支援條件式,您還可以使用 when 和 unless 方法來有條件地套用約束。
timezone
根據 DateTimeZone::listIdentifiers 方法,待驗證的欄位必須是有效的時區識別碼。
DateTimeZone::listIdentifiers 方法接受的引數也可以提供給此驗證規則:
'timezone' => ['required', 'timezone:all'];
'timezone' => ['required', 'timezone:Africa'];
'timezone' => ['required', 'timezone:per_country,US'];unique:table,column
進行驗證的欄位值不能存在於指定的資料庫資料表中。
指定自訂資料表 / 欄位名稱:
除了直接指定資料表名稱外,您也可以指定用來取得資料表名稱的 Eloquent 模型:
'email' => ['unique:App\Models\User,email_address']column 選項可用於指定該欄位對應的資料庫欄位。如果未指定 column 選項,則會使用進行驗證的欄位名稱。
'email' => ['unique:users,email_address']指定自訂資料庫連線
有時候,您可能需要為 Validator 所執行的資料庫查詢設定自訂連線。要達成此目的,您可以在資料表名稱前加上連線名稱:
'email' => ['unique:connection.users,email_address']強制 Unique 規則忽略特定的 ID:
有時候,您可能會希望在進行唯一性驗證時忽略特定的 ID。例如,想像一個「更新個人資料」的畫面,其中包含使用者的姓名、電子郵件地址和地點。您可能會想要驗證電子郵件地址是否唯一。然而,如果使用者只修改了姓名欄位而沒有修改電子郵件欄位,您不希望因為該使用者已經是該電子郵件地址的擁有者而拋出驗證錯誤。
若要指示驗證器忽略使用者的 ID,我們可以使用 Rule 類別來流暢地定義此規則。
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
Validator::make($data, [
'email' => [
'required',
Rule::unique('users')->ignore($user->id),
],
]);⚠️ 警告
您絕對不要將任何使用者控制的請求輸入傳入 ignore 方法中。相反地,您應該只傳入由系統產生的唯一 ID,例如來自 Eloquent 模型實例的自動遞增 ID 或 UUID。否則,您的應用程式將容易受到 SQL 注入攻擊。
除了將模型鍵值傳遞給 ignore 方法外,您也可以傳遞整個模型實例。Laravel 將會自動從模型中提取鍵值:
Rule::unique('users')->ignore($user)如果您的資料表使用 id 以外的主鍵欄位名稱,您可以在呼叫 ignore 方法時指定該欄位的名稱:
Rule::unique('users')->ignore($user->id, 'user_id')預設情況下,unique 規則會檢查與被驗證屬性名稱相符的欄位的唯一性。然而,您可以將不同的欄位名稱作爲第二個引數傳遞給 unique 方法:
Rule::unique('users', 'email_address')->ignore($user->id)加入額外的 Where 子句:
您可以透過使用 where 方法自訂查詢來指定額外的查詢條件。例如,讓我們加入一個查詢條件,將查詢範圍限制為僅搜尋 account_id 欄位值為 1 的紀錄:
'email' => Rule::unique('users')->where(fn (Builder $query) => $query->where('account_id', 1))在唯一性檢查中忽略軟刪除紀錄:
預設情況下,唯一性規則在判斷唯一性時會包含軟刪除的紀錄。若要從唯一性檢查中排除軟刪除紀錄,您可以呼叫 withoutTrashed 方法:
Rule::unique('users')->withoutTrashed();如果您的模型對軟刪除紀錄使用的是 deleted_at 以外的欄位名稱,您可以在呼叫 withoutTrashed 方法時提供該欄位名稱:
Rule::unique('users')->withoutTrashed('was_deleted_at');uppercase
進行驗證的欄位值必須是大寫。
url
進行驗證的欄位值必須是有效的 URL。
如果您想指定哪些 URL 協定應被視為有效,可以將這些協定作為驗證規則參數傳入:
'url' => ['url:http,https'],
'game' => ['url:minecraft,steam'],ulid
進行驗證的欄位值必須是有效的 Universally Unique Lexicographically Sortable Identifier (ULID)。
uuid
進行驗證的欄位值必須是有效的 RFC 9562(版本 1、3、4、5、6、7 或 8)通用唯一識別碼 (UUID)。
您也可以驗證指定的 UUID 是否符合特定版本的 UUID 規範:
'uuid' => ['uuid:4']有條件地加入規則
當欄位具有特定值時跳過驗證
有時候,如果另一個欄位具有特定值,您可能不希望驗證某個指定的欄位。您可以使用 exclude_if 驗證規則來達成此目的。在此範例中,若 has_appointment 欄位的值為 false,則不會驗證 appointment_date 和 doctor_name 欄位:
use Illuminate\Support\Facades\Validator;
$validator = Validator::make($data, [
'has_appointment' => ['required', 'boolean'],
'appointment_date' => ['exclude_if:has_appointment,false', 'required', 'date'],
'doctor_name' => ['exclude_if:has_appointment,false', 'required', 'string'],
]);或者,您也可以使用 exclude_unless 規則,除非另一個欄位具有指定的值,否則不驗證指定的欄位:
$validator = Validator::make($data, [
'has_appointment' => ['required', 'boolean'],
'appointment_date' => ['exclude_unless:has_appointment,true', 'required', 'date'],
'doctor_name' => ['exclude_unless:has_appointment,true', 'required', 'string'],
]);當欄位存在時才驗證
在某些情況下,您可能希望僅在該欄位存在於被驗證的資料中時,才對該欄位執行驗證檢查。若要快速達成此目的,請將 sometimes 規則加入您的規則清單中:
$validator = Validator::make($data, [
'email' => ['sometimes', 'required', 'email'],
]);在上述範例中,只有當 email 欄位存在於 $data 陣列中時,才會對其進行驗證。
📌 備註
如果您嘗試驗證一個應該要一直存在但可能為空的欄位,請參考關於選填欄位的注意事項。
複雜的條件式驗證
有時候,您可能希望根據更複雜的條件邏輯來加入驗證規則。例如,您可能希望僅在另一個欄位的值大於 100 時,才要求某個指定欄位。或者,您可能需要兩個欄位僅在另一個欄位存在時才具有指定的值。加入這些驗證規則並不需要大費周章。首先,使用您永遠不會改變的_靜態規則_建立一個 Validator 實例:
use Illuminate\Support\Facades\Validator;
$validator = Validator::make($request->all(), [
'email' => ['required', 'email'],
'games' => ['required', 'integer', 'min:0'],
]);假設我們的網站應用程式是針對遊戲收藏家的。如果有一位遊戲收藏家在我們的應用程式註冊,且他們擁有超過 100 款遊戲,我們希望他們說明為什麼擁有這麼多遊戲。例如,也許他們經營一家遊戲二手店,或者只是單純喜歡收集遊戲。若要條件式地加入此要求,我們可以使用 Validator 實例上的 sometimes 方法。
use Illuminate\Support\Fluent;
$validator->sometimes('reason', ['required', 'max:500'], function (Fluent $input) {
return $input->games >= 100;
});傳遞給 sometimes 方法的第一個引數是我們有條件地進行驗證的欄位名稱。第二個引數是我們想要加入的規則清單。如果作為引數傳遞的第三個閉包傳回 true,這些規則就會被加入。這個方法讓建構複雜的條件式驗證變得輕而易舉。您甚至可以一次為多個欄位加入條件式驗證:
$validator->sometimes(['reason', 'cost'], 'required', function (Fluent $input) {
return $input->games >= 100;
});📌 備註
傳遞給閉包的 $input 參數會是 Illuminate\Support\Fluent 的實例,可以用來存取您正在驗證的輸入資料和檔案。
複雜的條件式陣列驗證
有時候,您可能想根據同一個巢狀陣列中的另一個欄位來驗證某個欄位,但您不知道該欄位的索引。在這些情況下,您可以讓您的閉包接收第二個引數,該引數將會是目前正在驗證的陣列中的個別項目:
$input = [
'channels' => [
[
'type' => 'email',
'address' => '[email protected]',
],
[
'type' => 'url',
'address' => 'https://example.com',
],
],
];
$validator->sometimes('channels.*.address', 'email', function (Fluent $input, Fluent $item) {
return $item->type === 'email';
});
$validator->sometimes('channels.*.address', 'url', function (Fluent $input, Fluent $item) {
return $item->type !== 'email';
});就像傳遞給閉包的 $input 參數一樣,當屬性資料是陣列時,$item 參數會是 Illuminate\Support\Fluent 的實例;否則,它會是一個字串。
驗證陣列
正如陣列驗證規則文件中所討論的,array 規則接受一個允許的陣列鍵值清單。如果陣列中存在任何額外的鍵值,驗證將會失敗:
use Illuminate\Support\Facades\Validator;
$input = [
'user' => [
'name' => 'Taylor Otwell',
'username' => 'taylorotwell',
'admin' => true,
],
];
Validator::make($input, [
'user' => ['array:name,username'],
]);一般來說,您應該始終指定允許存在於陣列中的陣列鍵值。否則,驗證器的 validate 和 validated 方法將會返回所有已驗證的資料,包含該陣列及其所有的鍵值,即使這些鍵值並未被其他巢狀陣列驗證規則所驗證。
驗證巢狀陣列輸入
驗證巢狀的陣列式表單輸入欄位並不困難。您可以使用「點」語法("dot notation")來驗證陣列中的屬性。例如,如果傳入的 HTTP 請求包含 photos[profile] 欄位,您可以像這樣進行驗證:
use Illuminate\Support\Facades\Validator;
$validator = Validator::make($request->all(), [
'photos.profile' => ['required', 'image'],
]);您也可以驗證陣列中的每個元素。例如,要驗證給定陣列輸入欄位中的每個 Email 是否都是唯一的,您可以這樣做:
$validator = Validator::make($request->all(), [
'users.*.email' => ['email', 'unique:users'],
'users.*.first_name' => ['required_with:users.*.last_name'],
]);同樣地,在語言檔案中指定自訂驗證訊息時,您可以使用 * 字元,這使得為陣列式欄位使用單一驗證訊息變得非常輕鬆:
'custom' => [
'users.*.email' => [
'unique' => 'Each user must have a unique email address',
]
],存取巢狀陣列資料
有時在為屬性指派驗證規則時,您可能需要存取特定巢狀陣列元素的值。您可以使用 Rule::forEach 方法來達成此目的。forEach 方法接受一個閉包,該閉包將在驗證中的陣列屬性每次迭代時被呼叫,並接收該屬性的值與明確且完全展開的屬性名稱。該閉包應返回一個要指派給該陣列元素的規則陣列:
use App\Rules\HasPermission;
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
$validator = Validator::make($request->all(), [
'companies.*.id' => Rule::forEach(function (string|null $value, string $attribute) {
return [
Rule::exists(Company::class, 'id'),
new HasPermission('manage-company', $value),
];
}),
]);錯誤訊息索引與位置
驗證陣列時,您可能希望在應用程式顯示的錯誤訊息中,引用驗證失敗的特定項目的索引或位置。若要做到這一點,您可以在自訂驗證訊息中包含 :index(從 0 開始)、:position(從 1 開始)或 :ordinal-position(以序數表示,例如 1st)佔位符:
use Illuminate\Support\Facades\Validator;
$input = [
'photos' => [
[
'name' => 'BeachVacation.jpg',
'description' => 'A photo of my beach vacation!',
],
[
'name' => 'GrandCanyon.jpg',
'description' => '',
],
],
];
Validator::validate($input, [
'photos.*.description' => ['required'],
], [
'photos.*.description.required' => 'Please describe photo #:position.',
]);在上述範例中,驗證將會失敗,使用者將會看到以下錯誤訊息:"Please describe photo #2."
如果有需要,您可以透過 second-index、second-position、third-index、third-position 等,來引用更深層巢狀的索引與位置。
'photos.*.attributes.*.string' => 'Invalid attribute for photo #:second-position.',驗證檔案
Laravel 提供了多種可用於驗證上傳檔案的驗證規則,例如 mimes、image、min 和 max。雖然您在驗證檔案時可以自由地個別指定這些規則,但 Laravel 還提供了一個流暢的檔案驗證規則建構器,您可能會覺得非常方便:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rules\File;
Validator::validate($input, [
'attachment' => [
'required',
File::types(['mp3', 'wav'])
->min(1024)
->max(12 * 1024),
],
]);驗證檔案類型
儘管在呼叫 types 方法時您只需要指定副檔名,但此方法實際上會透過讀取檔案內容並猜測其 MIME 類型來驗證檔案的 MIME 類型。完整的 MIME 類型及其對應副檔名清單可以在以下位置找到:
https://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
驗證檔案大小
為了方便起見,最小和最大檔案大小可以指定為帶有表示檔案大小單位字尾的字串。支援 kb、mb、gb 和 tb 字尾:
File::types(['mp3', 'wav'])
->min('1kb')
->max('10mb');驗證圖片檔案
如果您的應用程式接受使用者上傳的圖片,您可以使用 File 規則的 image 建構器方法,以確保驗證的檔案是圖片(jpg、jpeg、png、bmp、gif 或 webp)。
此外,可以使用 dimensions 規則來限制圖片的尺寸:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rule;
use Illuminate\Validation\Rules\File;
Validator::validate($input, [
'photo' => [
'required',
File::image()
->min(1024)
->max(12 * 1024)
->dimensions(Rule::dimensions()->maxWidth(1000)->maxHeight(500)),
],
]);📌 備註
關於驗證圖片尺寸的更多資訊,可以在尺寸規則文件中找到。
⚠️ 警告
預設情況下,由於可能存在 XSS 安全漏洞,image 規則不允許 SVG 檔案。如果您需要允許 SVG 檔案,可以將 allowSvg: true 傳遞給 image 規則:File::image(allowSvg: true)。
驗證圖片尺寸
您也可以驗證圖片的尺寸。例如,要驗證上傳的圖片寬度至少為 1000 像素、高度至少為 500 像素,您可以使用 dimensions 規則:
use Illuminate\Validation\Rule;
use Illuminate\Validation\Rules\File;
File::image()->dimensions(
Rule::dimensions()
->maxWidth(1000)
->maxHeight(500)
)📌 備註
關於驗證圖片尺寸的更多資訊,可以在尺寸規則文件中找到。
驗證密碼
為了確保密碼具有足夠的複雜度,您可以使用 Laravel 的 Password 規則物件:
use Illuminate\Support\Facades\Validator;
use Illuminate\Validation\Rules\Password;
$validator = Validator::make($request->all(), [
'password' => ['required', 'confirmed', Password::min(8)],
]);Password 規則物件讓您可以輕鬆自訂應用程式的密碼複雜度要求,例如指定密碼至少需要一個字母、數字、符號或大小寫混合的字元:
// Require at least 8 characters...
Password::min(8)
// Require at least one letter...
Password::min(8)->letters()
// Require at least one uppercase and one lowercase letter...
Password::min(8)->mixedCase()
// Require at least one number...
Password::min(8)->numbers()
// Require at least one symbol...
Password::min(8)->symbols()此外,您可以使用 uncompromised 方法來確保密碼未在公開的密碼資料外洩事件中遭到妥協:
Password::min(8)->uncompromised()在內部,Password 規則物件使用 k-Anonymity 模型,在不犧牲使用者隱私或安全的情況下,透過 haveibeenpwned.com 服務來判斷密碼是否已被外洩。
預設情況下,如果密碼在資料外洩中至少出現過一次,就會被視為已遭妥協。您可以使用 uncompromised 方法的第一個引數來客製化這個閾值:
// Ensure the password appears less than 3 times in the same data leak...
Password::min(8)->uncompromised(3);當然,您可以將上述範例中的所有方法鏈結在一起:
Password::min(8)
->letters()
->mixedCase()
->numbers()
->symbols()
->uncompromised()您可以使用 toPasswordRulesString 方法,將 Password 規則物件轉換為適合 HTML passwordrules 屬性的字串:
<input
type="password"
name="password"
autocomplete="new-password"
passwordrules="{{ Password::defaults()->toPasswordRulesString() }}"
/>定義預設密碼規則
您可能會發現在應用程式中的單一位置指定密碼的預設驗證規則非常方便。您可以使用 Password::defaults 方法輕鬆完成此操作,該方法接受一個閉包。傳給 defaults 方法的閉包應該回傳 Password 規則的預設設定。通常,應該在應用程式的其中一個服務提供者中的 boot 方法內呼叫 defaults 規則:
use Illuminate\Validation\Rules\Password;
/**
* Bootstrap any application services.
*/
public function boot(): void
{
Password::defaults(function () {
$rule = Password::min(8);
return $this->app->isProduction()
? $rule->mixedCase()->uncompromised()
: $rule;
});
}然後,當您想將預設規則套用到進行驗證的特定密碼時,您可以呼叫不帶引數的 defaults 方法:
'password' => ['required', Password::defaults()],有時候,您可能想在預設的密碼驗證規則中附加額外的驗證規則。您可以使用 rules 方法來完成此操作:
use App\Rules\ZxcvbnRule;
Password::defaults(function () {
$rule = Password::min(8)->rules([new ZxcvbnRule]);
// ...
});自訂驗證規則
使用規則物件
Laravel 提供了多種實用的驗證規則;然而,你可能想要指定一些自訂的規則。註冊自訂驗證規則的方法之一是使用規則物件。若要產生新的規則物件,你可以使用 make:rule Artisan 指令。讓我們使用這個指令來產生一個驗證字串是否為大寫的規則。Laravel 會將新的規則放置在 app/Rules 目錄中。如果該目錄不存在,當你執行 Artisan 指令建立規則時,Laravel 會自動建立它:
php artisan make:rule Uppercase規則建立完成後,我們就可以定義它的行為。規則物件只包含一個方法:validate。該方法接收屬性名稱、屬性值,以及一個在驗證失敗時應該被呼叫的驗證錯誤訊息回呼函式:
<?php
namespace App\Rules;
use Closure;
use Illuminate\Contracts\Validation\ValidationRule;
class Uppercase implements ValidationRule
{
/**
* Run the validation rule.
*/
public function validate(string $attribute, mixed $value, Closure $fail): void
{
if (strtoupper($value) !== $value) {
$fail('The :attribute must be uppercase.');
}
}
}定義好規則後,你可以藉由將規則物件的執行個體與其他驗證規則一起傳入,來將其附加到驗證器上:
use App\Rules\Uppercase;
$request->validate([
'name' => ['required', 'string', new Uppercase],
]);翻譯驗證訊息
除了向 $fail 閉包提供字面上的錯誤訊息外,你也可以提供一個翻譯字串鍵值並指示 Laravel 翻譯該錯誤訊息:
if (strtoupper($value) !== $value) {
$fail('validation.uppercase')->translate();
}如有需要,你可以提供預留位置替換值與偏好的語言,作為 translate 方法的第一與第二個引數:
$fail('validation.location')->translate([
'value' => $this->value,
], 'fr');存取額外資料
如果你的自訂驗證規則類別需要存取所有其他正在進行驗證的資料,你的規則類別可以實作 Illuminate\Contracts\Validation\DataAwareRule 介面。此介面要求你的類別必須定義一個 setData 方法。此方法會在驗證進行之前,由 Laravel 自動呼叫並傳入所有正在驗證的資料:
<?php
namespace App\Rules;
use Illuminate\Contracts\Validation\DataAwareRule;
use Illuminate\Contracts\Validation\ValidationRule;
class Uppercase implements DataAwareRule, ValidationRule
{
/**
* All of the data under validation.
*
* @var array<string, mixed>
*/
protected $data = [];
// ...
/**
* Set the data under validation.
*
* @param array<string, mixed> $data
*/
public function setData(array $data): static
{
$this->data = $data;
return $this;
}
}或者,如果你的驗證規則需要存取正在執行驗證的驗證器執行個體,你可以實作 ValidatorAwareRule 介面:
<?php
namespace App\Rules;
use Illuminate\Contracts\Validation\ValidationRule;
use Illuminate\Contracts\Validation\ValidatorAwareRule;
use Illuminate\Validation\Validator;
class Uppercase implements ValidationRule, ValidatorAwareRule
{
/**
* The validator instance.
*
* @var \Illuminate\Validation\Validator
*/
protected $validator;
// ...
/**
* Set the current validator.
*/
public function setValidator(Validator $validator): static
{
$this->validator = $validator;
return $this;
}
}使用閉包
如果你在整個應用程式中只需要一次自訂規則的功能,你可以使用閉包來代替規則物件。該閉包接收屬性的名稱、屬性的值,以及一個在驗證失敗時應該被呼叫的 $fail 回呼函式:
use Illuminate\Support\Facades\Validator;
use Closure;
$validator = Validator::make($request->all(), [
'title' => [
'required',
'max:255',
function (string $attribute, mixed $value, Closure $fail) {
if ($value === 'foo') {
$fail("The {$attribute} is invalid.");
}
},
],
]);隱式規則
預設情況下,當被驗證的屬性不存在或包含空字串時,一般的驗證規則(包括自訂規則)將不會執行。例如,unique 規則不會針對空字串執行:
use Illuminate\Support\Facades\Validator;
$rules = ['name' => ['unique:users,name']];
$input = ['name' => ''];
Validator::make($input, $rules)->passes(); // true為了讓自訂規則在屬性為空時也能執行,該規則必須暗示該屬性是必要的。若要快速產生一個新的隱式規則物件,你可以使用帶有 --implicit 選項的 make:rule Artisan 指令:
php artisan make:rule Uppercase --implicit⚠️ 警告
「隱式」規則僅_暗示_屬性是必要的。它是否真的會使缺失或空的屬性失效,完全取決於你。