atk14 / ip-matcher
Small class for checking ip addresses
Installs: 5 442
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Requires
- php: >=5.0.0
This package is auto-updated.
Last update: 2024-10-25 07:16:51 UTC
README
Small class for comparing IP addresses. One address can be compared with a single IP address or array of IPs or subnets. Works with both IPv4 and IPv6 formats.
Basic usage
Compare two IPs
IP::Match("127.0.0.1", "127.0.0.1");
Check an IP belongs to a 127.0.0.1-127.0.0.255 subnet
IP::Match("127.0.0.1", "127.0.0.1/24");
Check an IP matches at least one of addresses/subnets specified in an array
IP::Match("127.0.0.1", array("127.0.0.2", "127.0.0.1/24"));
Installation
Just use the Composer:
$ cd path/to/your/atk14/project/
$ composer require atk14/ip-matcher