php-src/ext/ctype/ctype.stub.php

26 lines
523 B
PHP
Raw Normal View History

2019-08-14 13:43:04 +00:00
<?php
/** @generate-class-entries */
function ctype_alnum(mixed $text): bool {}
2019-08-14 13:43:04 +00:00
function ctype_alpha(mixed $text): bool {}
2019-08-14 13:43:04 +00:00
function ctype_cntrl(mixed $text): bool {}
2019-08-14 13:43:04 +00:00
function ctype_digit(mixed $text): bool {}
2019-08-14 13:43:04 +00:00
function ctype_lower(mixed $text): bool {}
2019-08-14 13:43:04 +00:00
function ctype_graph(mixed $text): bool {}
2019-08-14 13:43:04 +00:00
function ctype_print(mixed $text): bool {}
2019-08-14 13:43:04 +00:00
function ctype_punct(mixed $text): bool {}
2019-08-14 13:43:04 +00:00
function ctype_space(mixed $text): bool {}
2019-08-14 13:43:04 +00:00
function ctype_upper(mixed $text): bool {}
2019-08-14 13:43:04 +00:00
function ctype_xdigit(mixed $text): bool {}