php验证邮箱格式是否正确

By | 2016年9月3日

使用php自带的函数:filter_var即可:

function sp_is_email($email){
	return filter_var($email, FILTER_VALIDATE_EMAIL); 
}