获取手机端IP地址

function getIP(){

           $ip=getenv('REMOTE_ADDR');

           $ip_ = getenv('HTTP_X_FORWARDED_FOR');

           if (($ip_ != "") && ($ip_ != "unknown")){

                  $ip=$ip_;

           }

           return $ip;

       }


你可能感兴趣的:(return,function,手机,IP地址)