我正在尝试基于 dns_get_record 创建一个简单的 DNS 查询。我已经在互联网上搜索了这方面的支持,但无济于事!很可能是因为它是一种陈旧过时的方法。尽管如此,我很难得到一个可以与 php.ini 一起使用的表单。任何帮助,将不胜感激。
索引.html
<html>
<body>
<form action="dns.php" method="post">
Name: <input type="text" name="search"><br>
<input type="submit">
</form>
</body>
</html>
dns.php
<?php
$search = test_input($_POST["search"]);
$result = dns_get_record($search, DNS_ANY, $authns, $addtl);
echo "Result = ";
print_r($result);
echo "Auth NS = ";
print_r($authns);
echo "Additional = ";
print_r($addtl);
?>