D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
local
/
psa
/
admin
/
plib
/
vendor
/
laminas
/
laminas-validator
/
src
/
Filename :
Hex.php
back
Copy
<?php namespace Laminas\Validator; use function ctype_xdigit; use function is_int; use function is_string; /** @final */ class Hex extends AbstractValidator { public const INVALID = 'hexInvalid'; public const NOT_HEX = 'notHex'; /** * Validation failure message template definitions * * @var array */ protected $messageTemplates = [ self::INVALID => 'Invalid type given. String expected', self::NOT_HEX => 'The input contains non-hexadecimal characters', ]; /** * Returns true if and only if $value contains only hexadecimal digit characters * * @param mixed $value * @return bool */ public function isValid($value) { if (! is_string($value) && ! is_int($value)) { $this->error(self::INVALID); return false; } $this->setValue($value); if (! ctype_xdigit((string) $value)) { $this->error(self::NOT_HEX); return false; } return true; } }