当前位置 : 主页 > 网络编程 > PHP >

PHP实现正则表达式抽取email地址函数

来源:互联网 收集:自由互联 发布时间:2021-07-03
function extract_emails_from($string) {//加入对#的判断,这个你懂的^_^ http://blog.ddian.cnpreg_match_all("/[\._a-zA-Z0-9-]+(@|#)[\._a-zA-Z0-9-]+/i", $string, $matches);return $matches[0];}
function extract_emails_from($string) {
	//加入对#的判断,这个你懂的^_^ http://blog.ddian.cn
	preg_match_all("/[\._a-zA-Z0-9-]+(@|#)[\._a-zA-Z0-9-]+/i", $string, $matches);
	return $matches[0];
}
网友评论