----------------------------------------------------------------------
($str, $pos)
| 1983 | |
| 1984 | //---------------------------------------------------------------------- |
| 1985 | public static function isdigitat($str, $pos) |
| 1986 | { |
| 1987 | if ($pos >= strlen($str)) |
| 1988 | return false; |
| 1989 | |
| 1990 | return ((ord($str[$pos]) >= ord('0'))&&(ord($str[$pos]) <= ord('9'))); |
| 1991 | } |
| 1992 | |
| 1993 | //---------------------------------------------------------------------- |
| 1994 | public static function isalnumat($str, $pos) |
no outgoing calls
no test coverage detected