LotGDocker/lotgd-web/lotgd/lib/is_email.php
2020-08-17 19:16:42 -04:00

9 lines
179 B
PHP
Executable File

<?php
// translator ready
// addnews ready
// mail ready
function is_email($email){
return preg_match("/[[:alnum:]_.-]+[@][[:alnum:]_.-]{2,}\\.[[:alnum:]_.-]{2,}/",$email);
}
?>