I want to check via php if someone connects to my site via IPv4 or IPv6.
The client address can be found in $_SERVER["REMOTE_ADDR"] but how to check if it's IPv4 or IPv6 ?
Thank you for your time
Andre
|
|
You can use this:
|
|||||||
|
|
What about counting the number of If there is more than 0 '
|
|||||
|
|
IPv4 addresses all match the regex |
|||||
|
|
The above solutions using regexps are good - but don't forget to check that your server even supports IPv6 in the first place! Many system administrators have IPv6 turned off because it causes a lot of headaches. (Many applications have been written exclusively with IPv4 in mind). |
|||
|
|
|
Since the highest voted answer has a rather significant problem, I'm going to share my own. This returns true if an address which appears to be IPv6 is passed in, and false if an address which appears to be IPv4 (or IPv4-mapped IPv6) is passed in. The actual addresses are not further validated; use
|
|||
|
|