1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 17:38:14 +02:00
Files
archived-php-src/ext/ctype/ctype.stub.php
T
2019-08-14 16:43:26 +02:00

24 lines
425 B
PHP

<?php
function ctype_alnum($text): bool {}
function ctype_alpha($text): bool {}
function ctype_cntrl($text): bool {}
function ctype_digit($text): bool {}
function ctype_lower($text): bool {}
function ctype_graph($text): bool {}
function ctype_print($text): bool {}
function ctype_punct($text): bool {}
function ctype_space($text): bool {}
function ctype_upper($text): bool {}
function ctype_xdigit($text): bool {}