2013-07-11 17 views
0

我試圖從表單中規範化一個數字,這將會/可能會以本地數字格式。例如
Zend Framework的數字規範化2

Locale:en-US 
1,234.56 -> 1234.56 

Locale:nl-NL 
1.234,56 -> 1234.56 

是否有ZF2到ZF1 Zend_Locale_Format::getNumber等效?

在此先感謝

Aborgrove。

回答

1

你的意思是像numberFormat過濾器?

+0

d'oh!對,就是這樣。謝謝Rufinus,有時我看不見樹林裏的木頭。 – Aborgrove

+0

其實Rufinus,你能給我一個本地號碼轉換代碼的例子嗎? 1,200,500.00至1200500.00,en_US的區域設置? – Aborgrove

+0

看看 https://github.com/zendframework/zf2/blob/master/tests/ZendTest/I18n/Filter/NumberFormatTest.php#L77 – Rufinus