See also: EnTransliteration
Related Class Documentation
<?php include('Arabic.php'); $Ar = new Arabic('Transliteration');
$en_terms = array('George Bush', 'Paul Wolfowitz', 'Silvio Berlusconi', 'Guantanamo','Arizona','Maryland', 'Oracle','Yahoo','Google','Formula1', 'Boeing','Caviar','Telephone', 'Internet');
echo '<ul>'; foreach($en_terms as $term) { $ar_term = $Ar->en2ar($term); $ar_term = trim($ar_term); echo "<li> $term <b class=hilight> ($ar_term)</b></li>"; }
echo '<li>0123,456.789 <b class=hilight>('; echo $Ar->arNum('0123,456.789'); echo ')</b></li>';
echo '</ul>'; ?>
|
- George Bush
(جورج بوش)
- Paul Wolfowitz
(باول وولفوويتز)
- Silvio Berlusconi
(سيلفيو برلوسكوني)
- Guantanamo
(غوانتانامو)
- Arizona
(اريزونه)
- Maryland
(ماريلاند)
- Oracle
(اوراكل)
- Yahoo
(ياهو)
- Google
(غوغل)
- Formula1
(فورمولا1)
- Boeing
(بوينغ)
- Caviar
(كافيار)
- Telephone
(تلفون)
- Internet
(انترنت)
- 0123,456.789 (٠١٢٣,٤٥٦.٧٨٩)
|
|