Php method for determining access IP address _ PHP Tutorial

Source: Internet
Author: User
Php method for determining the access IP address. This article mainly introduces how php judges access IP addresses. it involves php's judgment and usage skills on SERVER-side predefined variable $ _ SERVER, if you need a friend, you can use php to determine how to access the IP address.

This article mainly introduces php's method of determining the IP address to be accessed. it involves php's judgment and usage skills on the SERVER's predefined variable $ _ SERVER. For more information, see

This example describes how to use php to determine the IP address to access. Share it with you for your reference. The details are as follows:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

function getIP() {

if (! empty ( $_SERVER ["HTTP_CLIENT_IP"] )) {

$cip = $_SERVER ["HTTP_CLIENT_IP"];

} else if (! empty ( $_SERVER ["HTTP_X_FORWARDED_FOR"] )) {

$cip = $_SERVER ["HTTP_X_FORWARDED_FOR"];

} else if (! empty ( $_SERVER ["REMOTE_ADDR"] )) {

$cip = $_SERVER ["REMOTE_ADDR"];

} else {

$cip = '';

}

preg_match ( "/[\d\.]{7,15}/", $cip, $cips );

$cip = isset ( $cips [0] ) ? $cips [0] : 'unknown';

unset ( $cips );

return $cip;

}

?>

I hope this article will help you with php programming.

Note: For more exciting tutorials, please follow the help HouseWebpage design tutorialTopic,

This article mainly introduces php's method of judging access IP addresses, involving php's judgment and usage skills on the SERVER's predefined variable $ _ SERVER. if you need a friend, you can...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.