Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Padilo300/b21b6af60cc804c902898b956be2fb2e to your computer and use it in GitHub Desktop.
Save Padilo300/b21b6af60cc804c902898b956be2fb2e to your computer and use it in GitHub Desktop.
php регулярное выражение достать email
preg_match_all('/([a-z0-9_\.\-])+\@(([a-z0-9\-])+\.)+([a-zа-я0-9]{2,4})+/i', $string, $matches);
$result=implode(", ", $matches[0]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment