You are here

11 calls to Ctype::convert_int_to_char_for_ctype() in Lockr 7.3

Ctype::ctype_alnum in vendor/symfony/polyfill-ctype/Ctype.php
Returns TRUE if every character in text is either a letter or a digit, FALSE otherwise.
Ctype::ctype_alpha in vendor/symfony/polyfill-ctype/Ctype.php
Returns TRUE if every character in text is a letter, FALSE otherwise.
Ctype::ctype_cntrl in vendor/symfony/polyfill-ctype/Ctype.php
Returns TRUE if every character in text is a control character from the current locale, FALSE otherwise.
Ctype::ctype_digit in vendor/symfony/polyfill-ctype/Ctype.php
Returns TRUE if every character in the string text is a decimal digit, FALSE otherwise.
Ctype::ctype_graph in vendor/symfony/polyfill-ctype/Ctype.php
Returns TRUE if every character in text is printable and actually creates visible output (no white space), FALSE otherwise.
Ctype::ctype_lower in vendor/symfony/polyfill-ctype/Ctype.php
Returns TRUE if every character in text is a lowercase letter.
Ctype::ctype_print in vendor/symfony/polyfill-ctype/Ctype.php
Returns TRUE if every character in text will actually create output (including blanks). Returns FALSE if text contains control characters or characters that do not have any output or control function at all.
Ctype::ctype_punct in vendor/symfony/polyfill-ctype/Ctype.php
Returns TRUE if every character in text is printable, but neither letter, digit or blank, FALSE otherwise.
Ctype::ctype_space in vendor/symfony/polyfill-ctype/Ctype.php
Returns TRUE if every character in text creates some sort of white space, FALSE otherwise. Besides the blank character this also includes tab, vertical tab, line feed, carriage return and form feed characters.
Ctype::ctype_upper in vendor/symfony/polyfill-ctype/Ctype.php
Returns TRUE if every character in text is an uppercase letter.
Ctype::ctype_xdigit in vendor/symfony/polyfill-ctype/Ctype.php
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.