如果有人知道我们如何检测电子邮件地址的虚假域名,那将是一个很大的帮助。
请注意,我不想验证电子邮件。我想知道电子邮件域名是否存在。
答案 0 :(得分:2)
有一个函数checkdnsrr
How do you check if a domain name exists?
if (checkdnsrr('test.nl', 'A')) // or use ANY or for other see above link
{
echo 'Domain exists';
}
else
{
echo 'Domain does not exist';
}
------------------正在运作的代码-------
<?php
if (checkdnsrr('google.com', 'A')) // or use ANY or for other see above link
{
echo 'Domain exists';
}
else
{
echo 'Domain does not exist';
}
?>
//Output = Domain exists
//
if (checkdnsrr('fakewebtesting.com', 'A')) // or use ANY or for other see above link
{
echo 'Domain exists';
}
else
{
echo 'Domain does not exist';
}
?>
//Output = Domain does not exists
我希望您从电子邮件中提取域名并在此功能中使用它。
文档链接: