mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-04-07 13:16:29 +02:00
22 lines
383 B
PHP
22 lines
383 B
PHP
<?php
|
|
|
|
namespace Rakit\Validation\Rules;
|
|
|
|
use Rakit\Validation\Rule;
|
|
|
|
class AlphaNum extends Rule
|
|
{
|
|
|
|
protected $message = "The :attribute only allows alphabet and numeric";
|
|
|
|
public function check($value)
|
|
{
|
|
if (! is_string($value) && ! is_numeric($value)) {
|
|
return false;
|
|
}
|
|
|
|
return preg_match('/^[\pL\pM\pN]+$/u', $value) > 0;
|
|
}
|
|
|
|
}
|