TheMathWizard/Validator.php
2023-01-17 08:40:11 +01:00

14 lines
310 B
PHP

<?php
class Validator
{
public static function string($value, $min = 1, $max = INF)
{
$value = trim($value);
return strlen($value) >= $min && strlen($value) <= $max;
}
public static function email($value)
{
return filter_var($value, FILTER_VALIDATE_EMAIL);
}
}