mirror of
https://github.com/vrana/adminer.git
synced 2025-08-17 20:01:25 +02:00
Speedup
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1167 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
@@ -498,7 +498,7 @@ function apply_sql_function($function, $column) {
|
||||
function is_email($email) {
|
||||
$atom = '[-a-z0-9!#$%&\'*+/=?^_`{|}~]'; // characters of local-name
|
||||
$domain = '[a-z0-9]([-a-z0-9]{0,61}[a-z0-9])'; // one domain component
|
||||
return eregi("^$atom+(\\.$atom+)*@($domain?\\.)+$domain\$", $email);
|
||||
return preg_match("(^$atom+(\\.$atom+)*@($domain?\\.)+$domain\$)i", $email);
|
||||
}
|
||||
|
||||
/** Check whether the string is URL address
|
||||
|
Reference in New Issue
Block a user