Skip to content

Instantly share code, notes, and snippets.

@nixon1333
Created November 6, 2014 10:43
Show Gist options
  • Save nixon1333/f1edd732cde370749d62 to your computer and use it in GitHub Desktop.
Save nixon1333/f1edd732cde370749d62 to your computer and use it in GitHub Desktop.
simple solution for extracting domain name in php
<?php
$email = 'nixon@png.com.au';
//get the domain here
$domain = array_pop(explode('@', $email));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment