Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ドメイン名からドメインの IP アドレスを取得する必要があります。
それはできますか、その場合、どうすればできますか?
次のコードを使用できます。
<?php $ip = gethostbyname('www.site.com'); echo $ip; ?>
または、動的に操作できます...
<?php $url = $_GET['url']; $ip = gethostbyname($url); echo $ip; ?>