Bluz\Validator\Rule\Ip::verifyAddress PHP Method

verifyAddress() protected method

Verify IP address
protected verifyAddress ( string $address ) : boolean
$address string
return boolean
    protected function verifyAddress($address)
    {
        return (bool) filter_var($address, FILTER_VALIDATE_IP, ['flags' => $this->options]);
    }