How to use thinkphp to get the client IP

不言
Release: 2023-03-30 18:10:01
Original
4311 people have browsed it

This article mainly introduces how thinkphp correctly obtains the client IP. In addition to using the built-in get_client_ip function, are there any other methods? Read below to find out.

In the thinkphp framework, the system has a built-in get_client_ip method to obtain the client's IP address. Usage example:

$ip = get_client_ip();
Copy after login

In addition to thinkphp's built-in get_client_ip function, you can also Use the following function to obtain the client IP address.
$type means return type 0 returns IP address, 1 returns IPV4 address number
The sharing code is as follows

function get_client_ip($type = 0) {
  $type    = $type ? 1 : 0;
  static $ip =  NULL;
  if ($ip !== NULL) return $ip[$type];
  if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) {
    $arr  =  explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);
    $pos  =  array_search('unknown',$arr);
    if(false !== $pos) unset($arr[$pos]);
    $ip   =  trim($arr[0]);
  }elseif (isset($_SERVER['HTTP_CLIENT_IP'])) {
    $ip   =  $_SERVER['HTTP_CLIENT_IP'];
  }elseif (isset($_SERVER['REMOTE_ADDR'])) {
    $ip   =  $_SERVER['REMOTE_ADDR'];
  }
  // IP地址合法验证
  $long = ip2long($ip);
  $ip  = $long ? array($ip, $long) : array('0.0.0.0', 0);
  return $ip[$type];
Copy after login

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

Non-recursive method to implement PHP tree

Method to use PHP to obtain the real IP of the user client

How to implement anti-hotlinking in PHP

The above is the detailed content of How to use thinkphp to get the client IP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
th
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!