1 | <?php |
||
10 | class Table |
||
11 | { |
||
12 | |||
13 | /** |
||
14 | * Get the upper to lower case conversion table |
||
15 | * |
||
16 | * @return array |
||
17 | */ |
||
18 | public static function upperCaseToLowerCase() |
||
24 | |||
25 | /** |
||
26 | * Get the lower to upper case conversion table |
||
27 | * |
||
28 | * @return array |
||
29 | */ |
||
30 | public static function lowerCaseToUpperCase() |
||
39 | |||
40 | /** |
||
41 | * Get the lower case accent table |
||
42 | * @return array |
||
43 | */ |
||
44 | public static function lowerAccents() |
||
52 | |||
53 | /** |
||
54 | * Get the lower case accent table |
||
55 | * @return array |
||
56 | */ |
||
57 | public static function upperAccents() |
||
65 | |||
66 | /** |
||
67 | * Get the romanization table |
||
68 | * @return array |
||
69 | */ |
||
70 | public static function romanization() |
||
78 | |||
79 | /** |
||
80 | * Get the special chars as a concatenated string |
||
81 | * @return string |
||
82 | */ |
||
83 | public static function specialChars() |
||
93 | } |
||
94 |