当前位置:Gxlcms > PHP教程 > PHP实现正则表达式抽取email地址函数

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

时间:2021-07-01 10:21:17 帮助过:32人阅读

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

正则表达式, PHP, email

人气教程排行