How to get the names of all ctype functions in PHP

1 Answer

0 votes
echo "<pre>";
print_r(get_extension_funcs("ctype"));
echo "</pre>";


/*
run:

Array
(
    [0] => ctype_alnum
    [1] => ctype_alpha
    [2] => ctype_cntrl
    [3] => ctype_digit
    [4] => ctype_lower
    [5] => ctype_graph
    [6] => ctype_print
    [7] => ctype_punct
    [8] => ctype_space
    [9] => ctype_upper
    [10] => ctype_xdigit
)

*/

 



answered Jun 21, 2016 by avibootz

Related questions

1 answer 151 views
1 answer 171 views
1 answer 160 views
1 answer 154 views
1 answer 226 views
1 answer 267 views
...