Last active
May 26, 2024 01:35
-
-
Save amirasaran/f268960dd0b146995c9fdffb3e0ce14c 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); | |
} | |
?> |
thanks for sharing!
Awesome!
thanks man
thanks bro
آقا ممنون عالی
گفتم توی پروژه ای که واسه تغییر کاراکترای عربی به فارسیه یه نظر فارسی هم بذاریم!
البته همین نظر فارسی من هم پر از کلمات عربیه ولی این از ارزشای شما کم نمیکنه :)))
ممنون
لطف کردی
سپاس دوست گرامی
AAA Li
قصد داشتم برای تبدیل عربی به فارسی از پکیج استفاده کنم ولی وقتی با یه فاکشن اوکی میشه فوق العاده است
Awesome, TNX
دستت درد نکنه :)
زحمت کشیدین
کاراکتر ة رو هم اضافه کنید.
ممنونم بابت اشتراک گذاری
Nice one!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
do not care about wrong directions of arrows. when you use the code it will take care of it self.