함수 email2domain

함수 email2domain

1 PHP[ | ]

function email2domain($email) {
	$arr = explode('@', $email);
	if( count($arr) != 2 ) return false;
	return array_pop( $arr );
}
$email = 'helloworld@example.com';
echo email2domain( $email );
// example.com

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}