Welcome Guest, Not a member yet? Register   Sign In
how to separat the emails that i have ??
#7

[eluser]gyo[/eluser]
I just found something that you could use:

Code:
<?php
/*
Snippet Name: Get Emails from Strings
Author : Hermawan Haryanto
Email : [email protected]
Homepage: http://hermawan.com
Blog : http://hermawan.codewalkers.com
*/

function get_emails ($str)
{
   $emails = array();
   preg_match_all("/\b\w+\@\w+[\.\w+]+\b/", $str, $output);
   foreach($output[0] as $email) array_push ($emails, strtolower($email));
   if (count ($emails) >= 1) return $emails;
   else return false;
}

# Here is how to use it.

# Sample string containing email addresses;
$str = "test [email protected] ha ha [email protected] bla bla [email protected]";

# Get the emails on arrays;
$emails = get_emails ($str);

# Print that arrays;
print_r ($emails);
?>

$emails will be the array containing all the addresses, so you can go through it with a loop.


Messages In This Thread
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 01:12 AM
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 02:54 AM
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 02:57 AM
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 03:17 AM
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 04:03 AM
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 05:16 AM
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 05:42 AM
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 05:45 AM
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 06:30 AM
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 10:07 AM
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 11:02 AM
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 11:04 AM
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 01:24 PM
how to separat the emails that i have ?? - by El Forum - 04-02-2009, 02:11 PM



Theme © iAndrew 2016 - Forum software by © MyBB