php正则表达式抽取email地址函数

[代码] [PHP]代码

1functionextract_emails_from($string) {
2//加入对#的判断,这个你懂的^_^ http://blog.ddian.cn
3preg_match_all("/[\._a-zA-Z0-9-]+(@|#)[\._a-zA-Z0-9-]+/i",$string,$matches);
4return$matches[0];
5}