Skip to content

Instantly share code, notes, and snippets.

@saber13812002
Created September 8, 2020 07:18
Show Gist options
  • Save saber13812002/e87f59fbb4dde6e08135d24bfd67b27f to your computer and use it in GitHub Desktop.
Save saber13812002/e87f59fbb4dde6e08135d24bfd67b27f to your computer and use it in GitHub Desktop.
laravel persian numbers عدد اعداد فارسی برای لاراول
function persianNumber($englishNumber)
{
return str_replace(['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'],
['۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹'], $englishNumber);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment