Created
March 13, 2017 22:55
-
-
Save johnabela/e296071ebc039d5a5b30b27c95b3a5f9 to your computer and use it in GitHub Desktop.
A more proper way to get the domain.tld from an email address in php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// too many php developers use the example on the php `strstr` page: | |
// http://php.net/manual/en/function.strstr.php | |
// Yet, amazingly, the following is a valid email address: | |
// foo@[email protected] | |
// If you use the example on the strstr page you end up with: | |
// @[email protected] -- which is of course not what you want. | |
// So what is a fast and extremely low memory method to return | |
// just the domain.tld when? The following seems to be the best. | |
$email = 'foo@[email protected]'; | |
$domain = substr(strrchr($email, "@"), 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment