Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在为currencyFormatter设置模式时,您可以使用:
#,##0.###
要得到:
1,0000.00
但我想得到:
1 0000.00
如何更改格式字符串以获得它?
尝试使用 'symbol' 属性覆盖您自己的货币。
echo Zend_Currency->toCurrency( 4000, array( 'currency' => "USD", 'symbol' => '' ) );