mirror of
https://github.com/openvk/openvk
synced 2024-11-11 09:29:29 +03:00
26 lines
658 B
PHP
26 lines
658 B
PHP
<?php declare(strict_types=1);
|
|
namespace openvk\Web\Util;
|
|
use Chandler\Patterns\TSimpleSingleton;
|
|
|
|
class Validator
|
|
{
|
|
function emailValid(string $email): bool
|
|
{
|
|
if(empty($email)) return false;
|
|
|
|
$email = trim($email);
|
|
[$user, $domain] = explode("@", $email);
|
|
if(is_null($domain)) return false;
|
|
if(iconv_strlen($user) > 64) return false;
|
|
$domain = idn_to_ascii($domain) . ".";
|
|
|
|
return checkdnsrr($domain, "MX");
|
|
}
|
|
|
|
function telegramValid(string $telegram): bool
|
|
{
|
|
return (bool) preg_match("/^(?:t.me\/|@)?([a-zA-Z0-9_]{0,32})$/", $telegram);
|
|
}
|
|
|
|
use TSimpleSingleton;
|
|
}
|