主頁(yè) > 知識(shí)庫(kù) > laravel 數(shù)據(jù)驗(yàn)證規(guī)則詳解

laravel 數(shù)據(jù)驗(yàn)證規(guī)則詳解

熱門(mén)標(biāo)簽:江門(mén)回?fù)芡夂粝到y(tǒng) 天潤(rùn)融通外呼系統(tǒng)好嗎 高德地圖標(biāo)注位置怎么標(biāo)注 高德地圖標(biāo)注店鋪收費(fèi)嗎 欣思維地圖標(biāo)注 江西電銷(xiāo)機(jī)器人收費(fèi) 泊頭在哪里辦理400電話(huà) 杭州語(yǔ)音電銷(xiāo)機(jī)器人 電銷(xiāo)機(jī)器人沒(méi)有效果怎么樣

如下所示:

return [
  'accepted' => '必須為yes,on,1,true',
  'active_url' => '是否是一個(gè)合法的url,基于PHP的checkdnsrr函數(shù),因此也可以用來(lái)驗(yàn)證郵箱地址是否存在',
  'after:date' => '驗(yàn)證字段必須是給定日期后的值,比如required|date|after:tomorrow,通過(guò)PHP函數(shù)strtotime來(lái)驗(yàn)證',
  'after_or_equal:date' => '大于等于',
  'alpha' => '驗(yàn)證字段必須全是字母',
  'alpha_dash' => '驗(yàn)證字段可能具有字母、數(shù)字、破折號(hào)、下劃線(xiàn)',
  'alpha_num' => '驗(yàn)證字段必須全是字母和數(shù)字',
  'array' => '數(shù)組',
  'before:date' => '小于',
  'before_or_equal:date' => '小于等于',
  'between:min,max' => '給定大小在min,max之間,字符串,數(shù)字,數(shù)組或者文件大小都用size函數(shù)評(píng)估',
  'boolean' => '必須為能轉(zhuǎn)化為布爾值的參數(shù),比如:true,false,1,0,"1","0"',
  'confirmed' => '字段必須與foo_confirmation字段值一致,比如,要驗(yàn)證的是password,輸入中必須存在匹配的password_confirmation字段',
  'date' => '通過(guò)strtotime校驗(yàn)的有效日期',
  'date_equals:date' => '等于',
  'date_format:format' => 'date和date_format不應(yīng)該同時(shí)使用,按指定時(shí)間格式傳值',
  'different:field' => '驗(yàn)證的字段值必須與字段field的值相同',
  'digits:value' => '必須是數(shù)字,并且有確切的值',
  'digits_between:min,max' => '字段長(zhǎng)度必須在min,max之間',
  'dimensions' => '驗(yàn)證的文件是圖片并且圖片比例必須符合規(guī)則,比如dimensions:min_width=100,min_height=200,可用
          的規(guī)則有min_width,max_width,min_height,max_height,width,height,ratio',
  'distinct' => '無(wú)重復(fù)值',
  'email' => '符合e-mail地址格式',
  'exists:table,column' => '必須存在于指定的數(shù)據(jù)庫(kù)表中',
  'file' => '成功上傳的文件',
  'filled' => '驗(yàn)證的字段存在時(shí)不能為空',
  'image' => '驗(yàn)證的文件必須是圖像,jpeg,png,bmp,gif,svg',
  'in:foo,bar,...' => '驗(yàn)證的字段必須包含在給定的值列表中',
  'in_array:anotherfield' => '驗(yàn)證的字段必須存在于另一個(gè)字段的值中',
  'integer' => '整數(shù)',
  'ip' => 'ip地址',
  'ipv4' => 'ipv4地址',
  'ipv6' => 'ipv6地址',
  'json' => 'json字符串',
  'max:value' => '大于',
  'mimetypes:text/plain,...' => '驗(yàn)證的文件必須與給定的MIME類(lèi)型匹配',
  'mimes:foo,bar,...' => '驗(yàn)證的文件必須具有列出的其中一個(gè)擴(kuò)展名對(duì)應(yīng)的MIME類(lèi)型',
  'min:value' => '小于',
  'nullable' => '可為null,可以包含空值的字符串和整數(shù)',
  'not_in:foo,bar...' => '不包含',
  'numeric' => '必須為數(shù)字',
  'present' => '驗(yàn)證的字段必須存在于輸入數(shù)據(jù)中,但可以為空',
  'regex:pattern' => '驗(yàn)證的字段必須與給定正則表達(dá)式匹配',
  'required' => '驗(yàn)證的字段必須存在于輸入數(shù)據(jù)中,但不可以為空',
          //以下情況視為空:1.該值為null,2.空字符串,3.空數(shù)組或空的可數(shù)對(duì)象,4.沒(méi)有路徑的上傳文件
  'required_if:anotherfield,value,...' => '如果指定的anotherfield等于value時(shí),被驗(yàn)證的字段必須存在且不為空',
  'required_unless:anotherfield,value,...' => '如果指定的anotherfield等于value時(shí),被驗(yàn)證的字段不必存在',
  'required_with:foo,bar,...' => '只要指定的其它字段中有任意一個(gè)字段存在,被驗(yàn)證的字段就必須存在且不為空',
  'required_with_all:foo,bar,...' => '當(dāng)指定的其它字段必須全部存在時(shí),被驗(yàn)證的字段才必須存在且不為空',
  'required_without_all:foo,bar,...' => '當(dāng)指定的其它字段必須全部不存在時(shí),被驗(yàn)證的字段必須存在且不為空',
  'required_without:foo,bar,...' => '當(dāng)指定的其它字段有一個(gè)字段不存在,被驗(yàn)證的字段就必須存在且不為空',
  'same:field' => '給定字段必須與驗(yàn)證字段匹配',
  'size:value' => '驗(yàn)證字段必須具有與給定值匹配的大小,對(duì)字符串,value對(duì)應(yīng)字符數(shù);對(duì)數(shù)字,對(duì)應(yīng)給定的
          整數(shù)值;對(duì)數(shù)組,對(duì)應(yīng)count值;對(duì)文件,是文件大?。╧b)',
  'timezone' => '驗(yàn)證字段是有效的時(shí)區(qū)標(biāo)識(shí)符,根據(jù)PHP函數(shù)timezone_identifiers_list判斷',
  'unique:table,column,except,idColumn' => '驗(yàn)證字段必須是數(shù)據(jù)庫(kù)中唯一的',
  'url' => '有效的url',
];

簡(jiǎn)單例子

return [
  'title.required' => 'A title is required',
  'body.required' => 'A message is required',
  'avatar' => [
    'required',
    Rule::dimensions()->maxWidth(500)->maxHeight(250)->ratio(3/2), //限制圖片大小和比例
  ],
  'foo.*.id' =>'distinct', //不允許重復(fù)
  'state' =>'exists:states', //指定表
  'state1' => 'exists:states,abbreviation', //指定表和字段
  'email' => 'exists:connection.staff,email', //指定查詢(xún)的數(shù)據(jù)庫(kù)
  'email1' => [
    'required',
    Rule::exists('staff')->where(function ($query){
      $query->where('account_id',1);
    }),
  ],
  'zones' => [
    'required',
    Rule::in(['first-zone','second-zone']),
  ],
  'video' => 'mimetypes:video/avi,video/mpeg,video/quicktime',
  'photo' => 'mimes:jpeg,bmp,png', //驗(yàn)證文件擴(kuò)展名,規(guī)則上也會(huì)驗(yàn)證文件的MIME類(lèi)型,通過(guò)讀取文件的內(nèi)容以猜測(cè)它的MIME類(lèi)型
  'toppings' => [
    'required',
    Rule::notIn(['sprinkles','cherries']),
  ],
  //當(dāng)使用regex時(shí),必須使用數(shù)組,而不是|分隔符,特別是正則中有|時(shí)
  'email2' => 'unique:users,email_address',
  'email3' => 'unique:connection.users,email_address', //指定數(shù)據(jù)庫(kù)
  'email4' => Rule::unique('users')->where(function ($query){
    $query->where('account_id',1);
  }),
  'custom' => [
    'person.*.email' => [
      'unique' => 'each person must have a unique e-mail address',
    ]
  ],
];

特殊例子

//驗(yàn)證時(shí)忽視id
Validator::make($data,[
  'email' => [
    'required',
    Rule::unique('users')->ignore($user->id,'user_id'),
  ]
]);

//在某些情況下,只有在該字段存在于輸入數(shù)組中時(shí),才可以對(duì)字段執(zhí)行驗(yàn)證檢查
$v = Validator::make($data,[
  'email' => 'sometimes|required|email',//email只有在data數(shù)組中時(shí)才會(huì)被驗(yàn)證
]);

$z = Validator::make($data,[
  'email' => 'required|email',
  'games' => 'required|numeric',
]);
$z->sometimes('reason','required|max:500',function ($input){
  return $input->games >= 100; //當(dāng)值超過(guò)100時(shí),reson才必填
});
$z->sometimes(['reson','cost'],'required',function ($input){
  return $input->games >= 100;
});
$validator = Validator::make($request->all(),[
  'photos.profile' => 'required|image',//驗(yàn)證數(shù)組中的某個(gè)key的值
]);

$validator = Validator::make($request->all(),[
  'person.*.email' => 'email|unique:users',
  'person.*.first_name' => 'required_with:person.*.last_name',
]);//驗(yàn)證指定數(shù)組輸入字段中的每一個(gè)email都是唯一的

$request->validate([
  'name' => ['required', new Uppercase()],
]);
$validator = Validator::make($this->request,[
  'title' => 'required|unique:posts|max:255',
  'body' => 'required',
])->validate();

$validator->after(function ($validator){
  if ($this->somethingElseIsInvalid()) {
    $validator->errors()->add('field', 'Something is wrong with this field!');
  }
});

if ($validator->fails()){

}

$errors = $validator->errors();
echo $errors->first('email');

//以數(shù)組形式獲取指定字段的所有錯(cuò)誤消息
foreach ($errors->get('email') as $message){

}

//驗(yàn)證表單的數(shù)組字段,獲取數(shù)組元素的所欲錯(cuò)誤消息
foreach ($errors->get('attachments.*') as $message){

}

//查看所有字段的錯(cuò)誤消息
foreach ($errors->all() as $message){

}

// 檢測(cè)一個(gè)字段是否有錯(cuò)誤消息
if ($errors->has('email')){

}

以上這篇laravel 數(shù)據(jù)驗(yàn)證規(guī)則詳解就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • laravel 表單驗(yàn)證實(shí)現(xiàn)多個(gè)字段組合后唯一
  • Laravel 驗(yàn)證碼認(rèn)證學(xué)習(xí)記錄小結(jié)
  • Laravel實(shí)現(xiàn)登錄跳轉(zhuǎn)功能
  • laravel 解決強(qiáng)制跳轉(zhuǎn) https的問(wèn)題
  • Laravel重定向,a鏈接跳轉(zhuǎn),控制器跳轉(zhuǎn)示例
  • 解決Laravel使用驗(yàn)證時(shí)跳轉(zhuǎn)到首頁(yè)的問(wèn)題

標(biāo)簽:內(nèi)江 雙鴨山 江門(mén) 石嘴山 大同 駐馬店 深圳

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《laravel 數(shù)據(jù)驗(yàn)證規(guī)則詳解》,本文關(guān)鍵詞  laravel,數(shù)據(jù),驗(yàn)證,規(guī)則,詳解,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《laravel 數(shù)據(jù)驗(yàn)證規(guī)則詳解》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于laravel 數(shù)據(jù)驗(yàn)證規(guī)則詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章