php 从电子邮件抽取一个字符串的实现方法

前端之家收集整理的这篇文章主要介绍了php 从电子邮件抽取一个字符串的实现方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编来看看吧。
经测试代码如下:

/**
 * 电子邮件抽取一个字符串
 *
 * @param 
 * @author 编程之家 jb51.cc jb51.cc
 **/
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));</test4@example.org>


/***   代码来自编程之家 jb51.cc(jb51.cc)   ***/
原文链接:https://www.f2er.com/php/529070.html

猜你在找的PHP相关文章