diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-08-05 01:52:02 +0200 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-08-05 01:52:02 +0200 |
commit | eabf23d38491aed648bfa22df18230f2f49be1cd (patch) | |
tree | c3280474c0ad710b9cc8b2718a259f3449168c3c /utils.php | |
parent | c3023fa66fe7846fbd008b26752570b4a3e979a5 (diff) |
Add a way to validate strict IP address (no mask).
Diffstat (limited to 'utils.php')
-rw-r--r-- | utils.php | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -21,8 +21,8 @@ require_once 'config.php'; -function match_ipv4($ip) { - if (strrpos($ip, '/')) { +function match_ipv4($ip, $ip_only = true) { + if (strrpos($ip, '/') && !$ip_only) { $ip_and_mask = explode('/', $ip, 2); return filter_var($ip_and_mask[0], FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) && @@ -32,8 +32,8 @@ function match_ipv4($ip) { } } -function match_ipv6($ip) { - if (strrpos($ip, '/')) { +function match_ipv6($ip, $ip_only = true) { + if (strrpos($ip, '/') && !$ip_only) { $ip_and_mask = explode('/', $ip, 2); return filter_var($ip_and_mask[0], FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) && |