1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 15:38:49 +02:00
Files
archived-php-src/ext/ctype/ctype.stub.php
T
2020-07-21 16:40:47 +02:00

37 lines
867 B
PHP

<?php
/** @generate-function-entries */
/** @param string|int $text */
function ctype_alnum(mixed $text): bool {}
/** @param string|int $text */
function ctype_alpha(mixed $text): bool {}
/** @param string|int $text */
function ctype_cntrl(mixed $text): bool {}
/** @param string|int $text */
function ctype_digit(mixed $text): bool {}
/** @param string|int $text */
function ctype_lower(mixed $text): bool {}
/** @param string|int $text */
function ctype_graph(mixed $text): bool {}
/** @param string|int $text */
function ctype_print(mixed $text): bool {}
/** @param string|int $text */
function ctype_punct(mixed $text): bool {}
/** @param string|int $text */
function ctype_space(mixed $text): bool {}
/** @param string|int $text */
function ctype_upper(mixed $text): bool {}
/** @param string|int $text */
function ctype_xdigit(mixed $text): bool {}