mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-01-30 22:31:14 +01:00
25 lines
514 B
PHP
25 lines
514 B
PHP
|
<?php
|
||
|
|
||
|
namespace Rakit\Validation\Rules;
|
||
|
|
||
|
use Rakit\Validation\Rule;
|
||
|
|
||
|
class Digits extends Rule
|
||
|
{
|
||
|
|
||
|
protected $message = "The :attribute must be numeric and must have an exact length of :length";
|
||
|
|
||
|
protected $fillable_params = ['length'];
|
||
|
|
||
|
public function check($value)
|
||
|
{
|
||
|
$this->requireParameters($this->fillable_params);
|
||
|
|
||
|
$length = (int) $this->parameter('length');
|
||
|
|
||
|
return ! preg_match('/[^0-9]/', $value)
|
||
|
&& strlen((string) $value) == $length;
|
||
|
}
|
||
|
|
||
|
}
|