以下を処理するには、テキスト文字列のテキスト束からドメイン名を検証する必要があります。
www.dewalist.com
dewaxxxx.com
ng.dewalist.com
dewaster.com.au
test.co.uk
...
...
FILTER_VALIDATE_URL を使用できますが、これは完全な URL のみを検証します: http://www.dewalist.com bla bla これは本当に私が望むものではありません。
同様の機能ですが、電子メールの代わりにドメイン用です。
function extract_email_address ($string)
{
$emails = array();
$string = str_replace("\r\n",' ',$string);
$string = str_replace("\n",' ',$string);
foreach(preg_split('/ /', $string) as $token) {
$email = filter_var($token, FILTER_VALIDATE_EMAIL);
if ($email !== false) {
$emails[] = $email;
}
}
return $emails;
}