سؤال

In Magento 2 invoice pdf, how can I show grand total amount in english words also? How can I achieve this?

هل كانت مفيدة؟

المحلول

You Can Convert Using NumberFormatter class

$f = new NumberFormatter("en", NumberFormatter::SPELLOUT);
echo $f->format(1432);

Output :-

one thousand four hundred thirty-two
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى magento.stackexchange
scroll top