PHP脚本中DNS_GET_RECORD MX查找失败

0pizxfdo  于 2024-01-05  发布在  PHP
关注(0)|答案(1)|浏览(325)

我有一个PHP脚本,它使用get_dns_record来检索和显示通过表单提交的域的特定DNS记录。
它的工作真的很好,除了处理MX记录的部分是有点不可靠.有时没有MX记录显示在所有(在域我知道有他们).如果你刷新2-3次,有时他们会显示.有时他们不会.

  1. function getDNSRecord($domain1) {
  2. $dns = dns_get_record( $domain1, DNS_ANY );
  3. echo "These are DNS records";
  4. foreach( $dns as $d ) {
  5. // Only print A and MX records
  6. if( $d['type'] != "A" and $d['type'] != "MX" )
  7. continue;
  8. // Print type specific fields
  9. switch( $d['type'] ) {
  10. case 'A':
  11. // Display annoying message
  12. echo "<b>\n" . $d['ip'] . "</b>\n is the Primary A Record for this domain.";
  13. break;
  14. case 'MX':
  15. // Resolve IP address of the mail server
  16. $mx = dns_get_record( $d['target'], DNS_A );
  17. foreach( $mx as $server ) {
  18. echo "This MX record for " . $d['host'] . " points to the server <b>\n" . $d['target'] . "</b>\n whose IP address is <b>\n" . $server['ip'] . "</b>. It has a priority of <b>\n" . $d['pri'] . "</b>\n.";
  19. }
  20. if ( $d['target'] == $domain1 ) {
  21. echo "<div id='mx-status'>There is an issue with this MX Record</div>\n";
  22. } else {
  23. echo "<div id='mx-status'>This MX Record looks fine.</div>\n";
  24. }
  25. break;
  26. }
  27. }
  28. }

字符串

oewdyzsn

oewdyzsn1#

您是否考虑过使用getmxrr()来获取域的mx记录?文档在此:https://www.php.net/manual/en/function.getmxrr.php

相关问题