symfony2 中的货币列表
我记得在 symfony 1.x 中有一个“货币”字段类型,它是世界上所有货币的选择。 symfony2中有类似的东西吗?
I remember in symfony 1.x there was a "currency" field type, which was a select with all currencies in the world. Is there something like this in symfony2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找不到,所以我自己创建了一个。我从这里获得了列表,
这是一个包含所有货币的类
这是实际的表单类型,
我希望这会有所帮助。
I couldn't find one, so I created one myself. I got the list from here
This is a class for containing all the currencies
This is the actual form type
I hope this helps.
Symfony 2.3 中有
CurrencyType
。它使用
Intl
组件来获取所有货币的列表。https://github .com/symfony/symfony/blob/master/src/Symfony/Component/Form/Extension/Core/Type/CurrencyType.php
There is
CurrencyType
in Symfony 2.3.It uses
Intl
component to get list of all currencies.https://github.com/symfony/symfony/blob/master/src/Symfony/Component/Form/Extension/Core/Type/CurrencyType.php