美文网首页
php 数字格式化

php 数字格式化

作者: cuihaomaster | 来源:发表于2019-07-18 10:34 被阅读0次

    比如说24转成twenty-four

    需要打开 intl 扩展
    使用方法:

    <?php
    $f = new NumberFormatter("en", NumberFormatter::SPELLOUT);
    echo $f->format(123456);
    
    ?>
    
    Produces the result:
    one hundred twenty-three thousand four hundred fifty-six
    

    php官方文档:https://www.php.net/manual/en/class.numberformatter.php

    相关文章

      网友评论

          本文标题:php 数字格式化

          本文链接:https://www.haomeiwen.com/subject/xxuklctx.html