1 | <?php |
||
5 | class Phonenumber |
||
6 | { |
||
7 | const ORANGE = 10; |
||
8 | const MTN = 11; |
||
9 | const NEXTTEL = 12; |
||
10 | const CAMTEL = 13; |
||
11 | const UNKOWN = -1; |
||
12 | /** |
||
13 | * get operator from phone |
||
14 | * |
||
15 | * @param string $phone |
||
16 | * @return integer |
||
17 | */ |
||
18 | public static function getOperator(string $phone): int |
||
45 | /** |
||
46 | * Undocumented function |
||
47 | * |
||
48 | * @param string $phone |
||
49 | * @return string |
||
50 | */ |
||
51 | public static function getPhoneWithoutPrefix(string $phone): string |
||
66 | } |
||
67 |