-
Notifications
You must be signed in to change notification settings - Fork 1
/
Transliteration.php
290 lines (238 loc) · 8.25 KB
/
Transliteration.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<?php
namespace ArabyPHP\Transliteration;
class Transliteration
{
/**
* @var array
*/
private $_arFinePatterns = ["/'+/u", "/([\- ])'/u", '/(.)#/u'];
/**
* @var array
*/
private $_arFineReplacements = ["'", '\\1', "\\1'\\1"];
/**
* @var array
*/
private $_en2arPregSearch = [];
/**
* @var array
*/
private $_en2arPregReplace = [];
/**
* @var array
*/
private $_en2arStrSearch = [];
/**
* @var array
*/
private $_en2arStrReplace = [];
/**
* @var array
*/
private $_ar2enPregSearch = [];
/**
* @var array
*/
private $_ar2enPregReplace = [];
/**
* @var array
*/
private $_ar2enStrSearch = [];
/**
* @var array
*/
private $_ar2enStrReplace = [];
/**
* @var array
*/
private $_diariticalSearch = [];
/**
* @var array
*/
private $_diariticalReplace = [];
/**
* @var array
*/
private $_iso233Search = [];
/**
* @var array
*/
private $_iso233Replace = [];
/**
* @var array
*/
private $_rjgcSearch = [];
/**
* @var array
*/
private $_rjgcReplace = [];
/**
* @var array
*/
private $_sesSearch = [];
/**
* @var array
*/
private $_sesReplace = [];
/**
* Loads initialize values.
*
* @ignore
*/
public function __construct()
{
$xml = simplexml_load_file(__DIR__.'/data/Transliteration.xml');
foreach ($xml->xpath("//preg_replace[@function='ar2en']/pair") as $pair) {
array_push($this->_ar2enPregSearch, (string) $pair->search);
array_push($this->_ar2enPregReplace, (string) $pair->replace);
}
foreach ($xml->xpath("//str_replace[@function='diaritical']/pair") as $pair) {
array_push($this->_diariticalSearch, (string) $pair->search);
array_push($this->_diariticalReplace, (string) $pair->replace);
}
foreach ($xml->xpath("//str_replace[@function='ISO233']/pair") as $pair) {
array_push($this->_iso233Search, (string) $pair->search);
array_push($this->_iso233Replace, (string) $pair->replace);
}
foreach ($xml->xpath("//str_replace[@function='RJGC']/pair") as $pair) {
array_push($this->_rjgcSearch, (string) $pair->search);
array_push($this->_rjgcReplace, (string) $pair->replace);
}
foreach ($xml->xpath("//str_replace[@function='SES']/pair") as $pair) {
array_push($this->_sesSearch, (string) $pair->search);
array_push($this->_sesReplace, (string) $pair->replace);
}
foreach ($xml->xpath("//str_replace[@function='ar2en']/pair") as $pair) {
array_push($this->_ar2enStrSearch, (string) $pair->search);
array_push($this->_ar2enStrReplace, (string) $pair->replace);
}
foreach ($xml->xpath("//preg_replace[@function='en2ar']/pair") as $pair) {
array_push($this->_en2arPregSearch, (string) $pair->search);
array_push($this->_en2arPregReplace, (string) $pair->replace);
}
foreach ($xml->xpath("//str_replace[@function='en2ar']/pair") as $pair) {
array_push($this->_en2arStrSearch, (string) $pair->search);
array_push($this->_en2arStrReplace, (string) $pair->replace);
}
}
/**
* Transliterate English string into Arabic by render them in the
* orthography of the Arabic language.
*
* @param string $string English string you want to transliterate
* @param string $locale Locale information (e.g. 'en_GB' or 'de_DE')
*
* @return string Out of vocabulary English string in Arabic characters
*
*/
public function en2ar($string, $locale = 'en_US')
{
setlocale(LC_ALL, $locale);
$string = iconv('UTF-8', 'ASCII//TRANSLIT', $string);
$string = preg_replace('/[^\w\s]/', '', $string);
$string = strtolower($string);
$words = explode(' ', $string);
$string = '';
foreach ($words as $word) {
$word = preg_replace($this->_en2arPregSearch, $this->_en2arPregReplace, $word);
$word = str_replace($this->_en2arStrSearch, $this->_en2arStrReplace, $word);
$string .= ' '.$word;
}
return $string;
}
/**
* Transliterate Arabic string into English by render them in the
* orthography of the English language.
*
* @param string $string Arabic string you want to transliterate
* @param string $standard Transliteration standard, default is UNGEGN
* and possible values are [UNGEGN, UNGEGN+, RJGC,
* SES, ISO233]
*
* @return string Out of vocabulary Arabic string in English characters
*
*/
public function ar2en($string, $standard = 'UNGEGN')
{
//$string = str_replace('ة ال', 'tul', $string);
$words = explode(' ', $string);
$string = '';
for ($i = 0; $i < count($words) - 1; $i++) {
$words[$i] = str_replace('ة', 'ت', $words[$i]);
}
foreach ($words as $word) {
$temp = $word;
if ($standard == 'UNGEGN+') {
$temp = str_replace($this->_diariticalSearch, $this->_diariticalReplace, $temp);
} elseif ($standard == 'RJGC') {
$temp = str_replace($this->_diariticalSearch, $this->_diariticalReplace, $temp);
$temp = str_replace($this->_rjgcSearch, $this->_rjgcReplace, $temp);
} elseif ($standard == 'SES') {
$temp = str_replace($this->_diariticalSearch, $this->_diariticalReplace, $temp);
$temp = str_replace($this->_sesSearch, $this->_sesReplace, $temp);
} elseif ($standard == 'ISO233') {
$temp = str_replace($this->_iso233Search, $this->_iso233Replace, $temp);
}
$temp = preg_replace($this->_ar2enPregSearch, $this->_ar2enPregReplace, $temp);
$temp = str_replace($this->_ar2enStrSearch, $this->_ar2enStrReplace, $temp);
$temp = preg_replace($this->_arFinePatterns, $this->_arFineReplacements, $temp);
if (preg_match('/[a-z]/', mb_substr($temp, 0, 1))) {
$temp = ucwords($temp);
}
$pos = strpos($temp, '-');
if ($pos > 0) {
if (preg_match('/[a-z]/', mb_substr($temp, $pos + 1, 1))) {
$temp2 = substr($temp, 0, $pos);
$temp2 .= '-'.strtoupper($temp[$pos + 1]);
$temp2 .= substr($temp, $pos + 2);
} else {
$temp2 = $temp;
}
} else {
$temp2 = $temp;
}
$string .= ' '.$temp2;
}
return $string;
}
/**
* Render numbers in given string using HTML entities that will show them as
* Arabic digits (i.e. 1, 2, 3, etc.) whatever browser language settings are
* (if browser supports UTF-8 character set).
*
* @param string $string String includes some digits here or there
*
* @return string Original string after replace digits by HTML entities that
* will show given number using Indian digits
*
*/
public function enNum($string)
{
$html = '';
$digits = str_split("$string");
foreach ($digits as $digit) {
$html .= preg_match('/\d/', $digit) ? "$digit;" : $digit;
}
return $html;
}
/**
* Render numbers in given string using HTML entities that will show them as
* Indian digits (i.e. ١, ٢, ٣, etc.) whatever browser language settings are
* (if browser supports UTF-8 character set).
*
* @param string $string String includes some digits here or there
*
* @return string Original string after replace digits by HTML entities that
* will show given number using Arabic digits
*
*/
public function arNum($string)
{
$html = '';
$digits = str_split("$string");
foreach ($digits as $digit) {
$html .= preg_match('/\d/', $digit) ? "f$digit;" : $digit;
}
return $html;
}
}