문제

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