php 从字符串提取email地址的解决办法
内容摘要
这篇文章主要为大家详细介绍了php 从字符串提取email地址的简单示例,具有一定的参考价值,可以用来参考一下。
对php从字符串中提取email地址对此感兴趣的朋友,看看idc笔记做的
对php从字符串中提取email地址对此感兴趣的朋友,看看idc笔记做的
文章正文
这篇文章主要为大家详细介绍了php 从字符串提取email地址的简单示例,具有一定的参考价值,可以用来参考一下。
对php从字符串中提取email地址对此感兴趣的朋友,看看idc笔记做的技术笔记!
/**
* php从字符串中提取email地址
*
* @param
* @arrange 512-笔记网: 512PiC.com
**/
function extract_emails($str){
// This regular expression extracts all emails from a string:
$regexp = '/([a-z0-9_\.\-])+\@(([a-z0-9\-])+\.)+([a-z0-9]{2,4})+/i';
preg_match_all($regexp, $str, $m);
return isset($m[0]) ? $m[0] : array();
}
$test_string = 'This is a test string...
test1@example.org
Test different formats:
test2@example.org;
<a href="test3@example.org">foobar</a>
<test4@example.org>
strange formats:
test5@example.org
test6[at]example.org
test7@example.net.org.com
test8@ example.org
test9@!foo!.org
foobar
';
print_r(extract_emails($test_string));
/*** 来自php教程(www.idcnote.com) ***/
注:关于php 从字符串提取email地址的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释