这可能是一个非常基本的问题。
我从网络供应商处购买了空间。他们给了我一个像http://107.170.253.5/
这样的数字的网址。我想知道如何将其更改为myfirstwebsite.com.au
等字母链接。
感谢任何建议......
答案 0 :(得分:4)
在PHP中使用gethostbyaddr()
:
//Get the Internet host name corresponding to a given IP address
<?php
$hostname = gethostbyaddr('107.170.253.5');
echo $hostname; //<---- To print the hostname
编辑:
这不起作用。它给了我一个无线链接!
实际上,您没有使用IP地址映射您的域。请参阅以下示例,它完美无缺:
<?php
echo $ip = gethostbyname('www.stackoverflow.com'); //"prints" 198.252.206.140
echo gethostbyaddr($ip); //"prints" stackoverflow.com