Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/main/lib/web/ |
Upload File : |
<?php /** * Bitrix Framework * @package bitrix * @subpackage main * @copyright 2001-2024 Bitrix */ namespace Bitrix\Main\Web; use Psr\Http\Message\UriInterface; class IpAddress { protected $ip; /** * @param string $ip */ public function __construct($ip) { $this->ip = $ip; } /** * Creates the object by a host name. * * @param string $name * @return static */ public static function createByName($name) { $ip = gethostbyname($name); return new static($ip); } /** * Creates the object by a Uri. * * @param UriInterface $uri * @return static */ public static function createByUri(UriInterface $uri) { return static::createByName($uri->getHost()); } /** * Returns address's value. * * @return string */ public function get(): string { return $this->ip; } /** * Returns address's value. * * @return string */ public function __toString() { return $this->get(); } /** * Retuns true if the address is incorrect or private. * * @return bool */ public function isPrivate(): bool { return (filter_var($this->ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 | FILTER_FLAG_IPV6 | FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE) === false); } /** * Retuns true if the address is IPv4. * * @return bool */ public function isIPv4(): bool { return (filter_var($this->ip, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) !== false); } /** * Check IPv4 address is within an IP range * * @param string $cidr a valid IPv4 subnet[/mask] * @return bool */ public function matchRange(string $cidr): bool { if (str_contains($cidr, '/')) { [$subnet, $mask] = explode('/', $cidr); } else { $subnet = $cidr; $mask = 32; } return (ip2long($this->ip) & ~((1 << (32 - $mask)) - 1)) === ip2long($subnet); } /** * Formats IP as an unsigned int and returns it as a sting. * @return string */ public function toUnsigned(): string { return sprintf('%u', ip2long($this->ip)); } /** * Formats IP as a range (192.168.0.0/24). * @param int $prefixLen * @return string */ public function toRange(int $prefixLen): string { return long2ip(ip2long($this->ip) & ~((1 << (32 - $prefixLen)) - 1)) . '/' . $prefixLen; } }