首页 > 开发 > PHP > 正文

一个得到IP地址的函数

2024-05-04 22:59:00
字体:
来源:转载
供稿:网友
<?

function getip()

{

   if(getenv('http_client_ip'))

   {

    $onlineip = getenv('http_client_ip');

   }

   elseif(getenv('remote_addr'))

   {

    $onlineip = getenv('remote_addr');

   }

   else

   {

    $onlineip = $_server['remote_addr'];

   }

   return $onlineip;

}

$ip=getip();

echo $ip;

?>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表