gpt4 book ai didi

php - Laravel 5.1 中的自定义验证替换器

转载 作者:可可西里 更新时间:2023-11-01 00:08:37 25 4
gpt4 key购买 nike

我正在尝试在我的 Laravel 5.1 应用程序中创建自定义验证替换器。

我现在有

Validator::replacer('year', 'App\CustomValidators@replaceYear');

在我的 AppServiceProvider 文件中,相应的生活在我的自定义类中。但是,当我在验证消息中包含 :year 时,它不会被替换。我错过了什么?

这是我的替换函数。

public function replaceYear($message, $attribute, $rule, $parameters)
{
return str_replace([':year'], $parameters, $message);
}

最佳答案

我真正应该做的是像这样设置我的替换器:

Validator::replacer('dateInYear', 'App\CustomValidators@replaceDateInYear');

dateInYear 名称与我设置的自定义验证规则的名称相对应。不过,我最终做的是扩展验证器类,这样我就不必再声明每个自定义规则和替换器。我的验证器类现在看起来像这样:

<?php

namespace App\Services;

use Carbon\Carbon;
use \Illuminate\Validation\Validator;

class CustomValidator extends Validator
{

/**
* The new validation rule I want to apply to a field. In this instance,
* I want to check if a submitted date is within a specific year
*/
protected function validateDateInYear($attribute, $value, $parameters, $validator)
{
$date = Carbon::createFromFormat('m/d/Y', $value)->startOfDay();

if ($date->year == $parameters[0]) {
return true;
}
return false;
}

//Custom Replacers
/**
* The replacer that goes with my specific custom validator. They
* should be named the same with a different prefix word so laravel
* knows they should be run together.
*/
protected function replaceDateInYear($message, $attribute, $rule, $parameters)
{
//All custom placeholders that live in the message for
//this rule should live in the first parameter of str_replace
return str_replace([':year'], $parameters, $message);
}
}

这让我在大多数情况下不用管我的 AppServiceProvider 文件,只需要注册新的验证类,我真的可以在任何服务提供商中做到这一点。

Laravel 的文档特别缺乏替换器需要发生的事情,所以我希望这对以后的人有所帮助。

关于php - Laravel 5.1 中的自定义验证替换器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33134878/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com