mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
481 B
481 B
date | id | title |
---|---|---|
20201113 | 8a367c4d-c104-41ff-953b-23d5d154028f | IP Address Anonymizer |
Description
Removes last byte for IPV4 addresses and last 8 bytes for IPV6
Syntax
use Symfony\Component\HttpFoundation\IpUtils;
$ipv4 = '123.234.235.236';
$anonymousIpv4 = IPUtils::anonymize($ipv4);
// $anonymousIpv4 = '123.234.235.0'
$ipv6 = '2a01:198:603:10:396e:4789:8e99:890f';
$anonymousIpv6 = IPUtils::anonymize($ipv6);
// $anonymousIpv6 = '2a01:198:603:10::'