How can I set an IP segment in the backend for login in php? _ PHP Tutorial

Source: Internet
Author: User
How does php set an IP segment in the background to log on ?. Sometimes we want the IP address of the website Changsha address to be able to log on, but the IP address of other regions cannot log on, below I will write a php program for you. This will limit the possibility of logging on to an IP segment in the background. sometimes we hope that the IP address of the website's Changsha address can be logged on, but the IP address of other regions cannot be logged on, below I will write a php program for you to implement the restriction that a certain IP segment in the background can be logged on.

The code is as follows:
Public function login (){
// Set IP segment logon
If (getenv ("HTTP_CLIENT_IP ")){
$ Onlineip = getenv ('http _ CLIENT_IP ');
}
Elseif (getenv ('http _ X_FORWARDED_FOR ')){
$ Onlineip = getenv ('http _ X_FORWARDED_FOR ');
}
Elseif (getenv ('remote _ ADDR ')){
$ Onlineip = getenv ('remote _ ADDR ');
}
Else {
$ Onlineip = $ HTTP_SERVER_VARS ['remote _ ADDR '];
}
// Echo $ onlineip;
$ Adminip = $ onlineip;
$ Arrayip = array ('192. 117. 48. * ', '192. 0. 0. *'); // ip segment
$ Ipregexp = implode ('|', str_replace (array ('*', '.'), array ('D + ','. '), $ arrayip ));
$ Allow = preg_match ("/^ (". $ ipregexp. ") $/", $ adminip );

If ($ allow! = 1 ){
Showmessage (L ('your IP address is not in the permitted range! '),'? M = admin & c = index & a = login, 6000 );
}

Put the following code in your website background login portal for calling, and then change m = admin & c = index & a = login to your address.

...

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.