在日常开发中,使用自带的函数会比我们自己造的轮子更好用,更高效,所以就总结了一下,开始撸起来!!!
1. gethostbyname 返回主机名对应的 IPv4地址
function host2ip($host) { $host=trim($host.‘.‘); $ip= gethostbyname($host); return $ip == $host ? ‘‘ : $ip; }
原文:https://www.cnblogs.com/xingxia/p/php_functions.html