Laravel 验证日期范围数组
Laravel validate array of date ranges
我有一组日期范围输入:
[
[ 'start' => '2000-01-01 00:00:00', 'end' => '2000-01-01 06:00:00' ],
[ 'start' => '2000-01-02 00:00:00', 'end' => '2000-01-02 12:00:00' ],
[ 'start' => '2000-01-03 06:00:00', 'end' => '2000-01-03 12:00:00' ],
[ 'start' => '2000-01-03 05:00:00', 'end' => '2000-01-03 10:00:00' ],
]
所有这些范围都必须是唯一的并且不能相互交叉。我正在尝试找到一种使用 Laravel Validator 来验证它们的方法。在我的例子中,索引 2
和 3
的范围无效,因为它们相互交叉
查看您的要求后,您必须制定自定义验证规则,如果没有日期范围不冲突,则 return 为真,否则为假。
为了实现这样的事情,您必须使用以下 artisan 命令自定义验证规则范围。
php artisan make:rule Range
现在,您将在 App\Rules\
文件夹中看到 Range.php
。
然后使您的代码如下所示。
App\Rules\Range.php
<?php
namespace App\Rules;
use Illuminate\Contracts\Validation\Rule;
class Range implements Rule
{
/**
* Create a new rule instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
$intersect = true;
for($i=0;$i<count($value); $i++){
for($j=$i+1;$j<count($value); $j++){
if($value[$i]['start']<=$value[$j]['end'] && $value[$i]['end']>=$value[$j]['start'])
{
$intersect = false;
}
}
}
return $intersect;
}
/**
* Get the validation error message.
*
* @return string
*/
public function message()
{
return 'The dates intersect each other.';
}
}
现在您可以像这样在验证中使用范围规则,
用法
案例一
如果您在控制器中进行验证,
$this->validate($request,[
. . .
'data'=>[new Range],
. . .
]);
案例二
如果您提出了请求 class 那么
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
. . .
'data' => [new Range],
. . .
];
}
这里data是发送日期范围的参数。
希望您能理解。如果需要任何进一步的解释,请随时询问。
我有一组日期范围输入:
[
[ 'start' => '2000-01-01 00:00:00', 'end' => '2000-01-01 06:00:00' ],
[ 'start' => '2000-01-02 00:00:00', 'end' => '2000-01-02 12:00:00' ],
[ 'start' => '2000-01-03 06:00:00', 'end' => '2000-01-03 12:00:00' ],
[ 'start' => '2000-01-03 05:00:00', 'end' => '2000-01-03 10:00:00' ],
]
所有这些范围都必须是唯一的并且不能相互交叉。我正在尝试找到一种使用 Laravel Validator 来验证它们的方法。在我的例子中,索引 2
和 3
的范围无效,因为它们相互交叉
查看您的要求后,您必须制定自定义验证规则,如果没有日期范围不冲突,则 return 为真,否则为假。
为了实现这样的事情,您必须使用以下 artisan 命令自定义验证规则范围。
php artisan make:rule Range
现在,您将在 App\Rules\
文件夹中看到 Range.php
。
然后使您的代码如下所示。
App\Rules\Range.php
<?php
namespace App\Rules;
use Illuminate\Contracts\Validation\Rule;
class Range implements Rule
{
/**
* Create a new rule instance.
*
* @return void
*/
public function __construct()
{
//
}
/**
* Determine if the validation rule passes.
*
* @param string $attribute
* @param mixed $value
* @return bool
*/
public function passes($attribute, $value)
{
$intersect = true;
for($i=0;$i<count($value); $i++){
for($j=$i+1;$j<count($value); $j++){
if($value[$i]['start']<=$value[$j]['end'] && $value[$i]['end']>=$value[$j]['start'])
{
$intersect = false;
}
}
}
return $intersect;
}
/**
* Get the validation error message.
*
* @return string
*/
public function message()
{
return 'The dates intersect each other.';
}
}
现在您可以像这样在验证中使用范围规则,
用法
案例一
如果您在控制器中进行验证,
$this->validate($request,[
. . .
'data'=>[new Range],
. . .
]);
案例二
如果您提出了请求 class 那么
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
. . .
'data' => [new Range],
. . .
];
}
这里data是发送日期范围的参数。
希望您能理解。如果需要任何进一步的解释,请随时询问。