gethostbyname (PHP 3, PHP 4, PHP 5)
gethostbyname — 获取指定机器名的IP地址
函数格式说明:
string gethostbyname ( string hostname )
返回 hostname 的IP地址
例 1. A simple gethostbyname() example
<?php
$ip = gethostbyname(‘www.526net.com‘);
echo $ip;
?>
愚人博客
gethostbyname (PHP 3, PHP 4, PHP 5)
gethostbyname — 获取指定机器名的IP地址
函数格式说明:
string gethostbyname ( string hostname )
返回 hostname 的IP地址
例 1. A simple gethostbyname() example
<?php
$ip = gethostbyname(‘www.526net.com‘);
echo $ip;
?>