PHP获取域名及域名IP的方法
最近在做的一个项目用到获取域名和IP的功能,大致有以下几种方法。
获取域名IP的方法可以使用内置的函数gethostbyname获取,例如:
<!--?php <br ?--> header("Content-type:text/html;charset=utf-8");$url ="http://www.jbxue.com/index.php?referer=jbxue.com";$pattern="/(http:\/\/)?(.*)\//";if(preg_match($pattern,$url,$arr)){echo "匹配成功";echo "匹配到了".$arr[2];}?>