TheMathWizard/Validator.php
2022-12-20 21:23:29 +01:00

14 lines
No EOL
309 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);
}
}