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 164 views
1 answer 184 views
1 answer 174 views
1 answer 163 views
1 answer 245 views
1 answer 281 views
...