Forked from amirasaran/Arabic character to Persian (Farsi) - PHP
Created
July 15, 2022 10:59
-
-
Save amirhp-com/bb9d3b74d5b4d18fbfed5eb79e2f73e5 to your computer and use it in GitHub Desktop.
convert Arabic character to Persian (Farsi) - PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
public static function arabicToPersian($string) | |
{ | |
$characters = [ | |
'ك' => 'ک', | |
'دِ' => 'د', | |
'بِ' => 'ب', | |
'زِ' => 'ز', | |
'ذِ' => 'ذ', | |
'شِ' => 'ش', | |
'سِ' => 'س', | |
'ى' => 'ی', | |
'ي' => 'ی', | |
'١' => '۱', | |
'٢' => '۲', | |
'٣' => '۳', | |
'٤' => '۴', | |
'٥' => '۵', | |
'٦' => '۶', | |
'٧' => '۷', | |
'٨' => '۸', | |
'٩' => '۹', | |
'٠' => '۰', | |
]; | |
return str_replace(array_keys($characters), array_values($characters),$string); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment