Subversion Repositories Applications.annuaire

Rev

Rev 294 | Rev 361 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 294 Rev 338
Line 474... Line 474...
474
	 * @return boolean vrai ou faux suivant que le mail est valide ou non
474
	 * @return boolean vrai ou faux suivant que le mail est valide ou non
475
	 */
475
	 */
476
	public function mailValide($mail) {
476
	public function mailValide($mail) {
Line 477... Line 477...
477
 
477
 
478
		$regexp_mail = '/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/';
478
		$regexp_mail = '/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,3})$/';
Line 479... Line 479...
479
		return preg_match($regexp_mail, $mail);
479
		return preg_match($regexp_mail, strtolower($mail));
Line 480... Line 480...
480
 
480
 
481
	}
481
	}