Ctype::ctype_xdigit( string|int $text )
Returns TRUE if every character in text is a hexadecimal ‘digit’, that is a decimal digit or a character from [A-Fa-f] , FALSE otherwise.
Description
See also
Parameters
- $text
-
(Required)
Return
(bool)
Source
File: vendor/symfony/polyfill-ctype/Ctype.php
public static function ctype_xdigit($text)
{
$text = self::convert_int_to_char_for_ctype($text);
return \is_string($text) && '' !== $text && !preg_match('/[^A-Fa-f0-9]/', $text);
}