PHP Класс Neos\Flow\Security\RequestPattern\Ip

The pattern can contain IPv4 and IPv6 addresses (including IPv6 wrapped IPv4 addresses).
См. также: http://tools.ietf.org/html/rfc4632
См. также: http://tools.ietf.org/html/rfc4291#section-2.3 Example: 127.0.0.0/24 will match all IP addresses from 127.0.0.0 to 127.0.0.255 127.0.0.0/31 and 127.0.0.1/31 will both match the IP addresses 127.0.0.0 and 127.0.0.1 127.0.0.254/31 and 127.0.0.255/31 will both match the IP addresses 127.0.0.254 and 127.0.0.255 1:2::3:4 will match the IPv6 address written as 1:2:0:0:0:0:3:4 or 1:2::3:4 ::7F00:1 will match the address written as 127.0.0.1, ::127.0.0.1 or ::7F00:1 ::1 (IPv6 loopback) will *not* match the address 127.0.0.1
Наследование: implements Neos\Flow\Security\RequestPatternInterface
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$options array

Открытые методы

Метод Описание
__construct ( array $options ) Expects options in the form array('cidrPattern' => '')
matchRequest ( Neos\Flow\Mvc\RequestInterface $request ) : boolean Matches a \Neos\Flow\Mvc\RequestInterface against the set IP pattern rules
setPattern ( string $ipPattern ) : void Sets an IP pattern (CIDR syntax)

Описание методов

__construct() публичный метод

Expects options in the form array('cidrPattern' => '')
public __construct ( array $options )
$options array

matchRequest() публичный метод

Matches a \Neos\Flow\Mvc\RequestInterface against the set IP pattern rules
public matchRequest ( Neos\Flow\Mvc\RequestInterface $request ) : boolean
$request Neos\Flow\Mvc\RequestInterface The request that should be matched
Результат boolean TRUE if the pattern matched, FALSE otherwise

setPattern() публичный метод

Sets an IP pattern (CIDR syntax)
Устаревший: since 3.3 this is not used - use options instead (@see __construct())
public setPattern ( string $ipPattern ) : void
$ipPattern string The CIDR styled IP pattern
Результат void

Описание свойств

$options защищенное свойство

protected array $options
Результат array