> root at mantoru dot de
PHP makes this easy for you. When working with domain portion of email addresses, simply pass the return of strstr() to substr() and start at 1:
substr(strstr($haystack, '@'), 1);
> root at mantoru dot de
PHP makes this easy for you. When working with domain portion of email addresses, simply pass the return of strstr() to substr() and start at 1:
substr(strstr($haystack, '@'), 1);