如果我想将一个给定的数字显示为序号,我会这样做:
<?php
// Needs 'php5-intl' package to be installed on Debian/Ubuntu
$set_format = numfmt_create( 'en_US', NumberFormatter::ORDINAL );
// '3' is displayed as '3rd'
echo numfmt_format( $set_format, 3 );
?>
但是如果我想使用内置的PHP函数/类来显示给定的数字作为的单词形式(例如,第一,第二,第三等) ,如NumberFormatter
,我该怎么做?有可能吗?
相关链接:
答案 0 :(得分:16)
您希望使用SPELLOUT
格式样式,而不是ORDINAL
。
下一个问题是如何告诉格式化程序使用您感兴趣的特定规则集;即%spellout-ordinal
。这可以通过使用setTextAttribute()
来完成。
示例强>
$formatter = new NumberFormatter('en_US', NumberFormatter::SPELLOUT);
$formatter->setTextAttribute(NumberFormatter::DEFAULT_RULESET,
"%spellout-ordinal");
for ($i = 1; $i <= 5; $i++) {
echo $formatter->format($i) . PHP_EOL;
}
<强>输出强>
first
second
third
fourth
fifth