<?php
/**
* Project: web.framework: the PHP5 MVC framework
* File: SimpleVerifyEmail.tester.class.php
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* You may contact the authors of web.framework by e-mail at:
* hide@address.com
*
* The latest version of web.framework can be obtained from:
* http://sourceforge.net/projects/webframework
*
* @link http://sourceforge.net/projects/webframework
* @copyright 2005 Marcin Staniszczak
* @author Marcin Staniszczak <hide@address.com>
* @version 1.0.0
*/
/**
* This tester check mail's propriety
*
* @name SimpleVerifyEmail
* @version 1.0.0
* @package web.framework
* @subpackage Testers
*
* @author Marcin Staniszczak
* @copyright 2005 Marcin Staniszczak
*/
class SimpleVerifyEmail implements ITester {
/**
* This function verifi email.
*
* @author lemming nine
* @param string e-mail to check
* @return boolean true - mail is correct, false - mail is incorrect
*/
private function verifyEmial($strEmail) {
if (preg_match('/^[^\x00-\x20()<>@,;:\\".[\]\x7f-\xff]+(?:\.[^\x00-\x20()<>@,;:\\".[\]\x7f-\xff]+)*\@[^\x00-\x20()<>@,;:\\".[\]\x7f-\xff]+(?:\.[^\x00-\x20()<>@,;:\\".[\]\x7f-\xff]+)+$/i', $strEmail)) {
return true;
} else {
return false;
}
}
/**
* This is tester's main method
*
* @param string web form value
* @param array tester's setting array - array('name'=>'value')
* @return boolean true - mail is correct, false - mail is incorrect
*/
public function execute($strValue, $arrParameters) {
return $this->verifyEmial($strValue);
}
}
?>