Jump to content

[SOLVED] Repeated Result


ballouta

Recommended Posts

Hello

i have this ereg that reads a returned email with non exisitng email addresses, it works good but it repeats each email address twice or three times according to how many times it is mentioned in the returened email:

 

<?php
preg_match_all('#([^\s<]+@[^\s>]+)#', $message, $matches);
for($i = 0, $total = count($matches[0]); $i < $total; $i++){
   echo $matches[0][$i] . '<br />';
}
?>

 

example of a delviery failure message (twice repeated):

Message from yahoo.co.uk.

Unable to deliver message to the following address(es).

 

<amvarusai@yahoo.co.uk>:

This user doesn't have a yahoo.co.uk account (amvarusai@yahoo.co.uk) [0]

 

Would you please help me solve this problem?

 

thank You

 

Link to comment
Share on other sites

<pre>
<?php
$message = <<<MSG
Message from yahoo.co.uk.
Unable to deliver message to the following address(es).

<amvarusai@yahoo.co.uk>:
This user doesn't have a yahoo.co.uk account (amvarusai@yahoo.co.uk) 
MSG;
preg_match_all('#[^\s<()]+@[^\s>()]+#', $message, $matches);
foreach (array_unique($matches[0]) as $match) {
	echo $match, '<br />';
}
?>
</pre>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.