diff options
author | Philip Häusler <msquare@notrademark.de> | 2011-12-26 15:55:17 +0100 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2011-12-26 15:55:17 +0100 |
commit | d1078f60fdb2237b1a3bfe0b664da1a5e7425d1f (patch) | |
tree | 7e2245fe2267b1fb0006228515b4acead4f9eb2b /includes/sys_page.php | |
parent | ce7f071c38202764f43eded4c3157a4743bd545f (diff) |
#44 new register form
Diffstat (limited to 'includes/sys_page.php')
-rw-r--r-- | includes/sys_page.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/includes/sys_page.php b/includes/sys_page.php index 54bbd953..c423155f 100644 --- a/includes/sys_page.php +++ b/includes/sys_page.php @@ -40,6 +40,13 @@ function strip_item($item) { } /** + * Überprüft eine E-Mail-Adresse. + */ +function check_email($email) { + return (bool) preg_match("#^([a-zA-Z0-9_\-])+(\.([a-zA-Z0-9_\-])+)*@((\[(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5])))\.(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5])))\.(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5])))\.(((([0-1])?([0-9])?[0-9])|(2[0-4][0-9])|(2[0-5][0-5]))\]))|((([\p{L}0-9])+(([\-])+([\p{L}0-9])+)*\.)+([\p{L}])+(([\-])+([\p{L}0-9])+)*))$#u", $email); +} + +/** * Gibt zwischengespeicherte Fehlermeldungen zurück und löscht den Zwischenspeicher */ function msg() { |