1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 19:52:20 +02:00
Files
archived-php-src/ext/ctype/ctype.stub.php
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 {}