com.caucho.quercus.lib
Class CtypeModule
java.lang.Object
com.caucho.quercus.module.AbstractQuercusModule
com.caucho.quercus.lib.CtypeModule
- All Implemented Interfaces:
- QuercusModule
public class CtypeModule
- extends AbstractQuercusModule
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
CtypeModule
public CtypeModule()
getLoadedExtensions
public java.lang.String[] getLoadedExtensions()
- Description copied from class:
AbstractQuercusModule
- Returns the extensions loaded by the module.
- Specified by:
getLoadedExtensions
in interface QuercusModule
- Overrides:
getLoadedExtensions
in class AbstractQuercusModule
ctype_alnum
public static boolean ctype_alnum(Value value)
ctype_alpha
public static boolean ctype_alpha(Value value)
ctype_cntrl
public static boolean ctype_cntrl(Value value)
ctype_digit
public static boolean ctype_digit(Value value)
ctype_graph
public static boolean ctype_graph(Value value)
ctype_lower
public static boolean ctype_lower(Value value)
ctype_print
public static boolean ctype_print(Value value)
ctype_punct
public static boolean ctype_punct(Value value)
ctype_space
public static boolean ctype_space(Value value)
ctype_upper
public static boolean ctype_upper(Value value)
ctype_xdigit
public static boolean ctype_xdigit(Value value)
isalnum
public static boolean isalnum(int ch)
isalpha
public static boolean isalpha(int ch)
iscntrl
public static boolean iscntrl(int ch)
isdigit
public static boolean isdigit(int ch)
isgraph
public static boolean isgraph(int ch)
islower
public static boolean islower(int ch)
isprint
public static boolean isprint(int ch)
ispunct
public static boolean ispunct(int ch)
isspace
public static boolean isspace(int ch)
isupper
public static boolean isupper(int ch)
isxdigit
public static boolean isxdigit(int ch)