gpt4 book ai didi

php - 使用 NumberFormatter 类将 php 中的数字编号为单词

转载 作者:行者123 更新时间:2023-12-03 18:35:31 26 4
gpt4 key购买 nike

我很难解决我的数字到 php 中的单词函数。

<?php

$num = 29.29;
$f = new NumberFormatter("en", NumberFormatter::SPELLOUT);
echo $f->format($num);
//outputs Twenty-nine and two nine
?>


如何将其格式化为:
二十九和二十九?

请帮忙!

最佳答案

首先, 29.29 应该如何发音是 Twenty nine point two nine 。话虽如此,如果您需要准确获取 Twenty-nine and Twenty-nine ,您可以使用以下内容:

<?php
$num = 29.29;
$exp = explode('.', $num);
$f = new NumberFormatter("en_US", NumberFormatter::SPELLOUT);
echo ucfirst($f->format($exp[0])) . ' and ' . ucfirst($f->format($exp[1]));
//outputs Twenty-nine and Twenty-nine
?>

关于php - 使用 NumberFormatter 类将 php 中的数字编号为单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46536760/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com