----------------------------------------------------------------------
($str, $pos)
| 46 | |
| 47 | //---------------------------------------------------------------------- |
| 48 | public static function isdigitat($str, $pos) |
| 49 | { |
| 50 | if ($pos >= strlen($str)) |
| 51 | return false; |
| 52 | |
| 53 | return ((ord($str[$pos]) >= ord('0'))&&(ord($str[$pos]) <= ord('9'))); |
| 54 | } |
| 55 | |
| 56 | //---------------------------------------------------------------------- |
| 57 | public static function isalnumat($str, $pos) |
no outgoing calls
no test coverage detected