Skip to content

Instantly share code, notes, and snippets.

@meysampg
Created December 1, 2016 22:55
Show Gist options
  • Save meysampg/0651ff3f82009b441252ccc0574fd009 to your computer and use it in GitHub Desktop.
Save meysampg/0651ff3f82009b441252ccc0574fd009 to your computer and use it in GitHub Desktop.
Convert a number to Iranian Currency
$iranMoney = function ($m) {
setlocale(LC_MONETARY, 'fa_IR');
return str_replace('IRR', 'ریال', money_format('%i', $m));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment