用于定制货币的 Zend 表单元素
如何扩展 zend 表单元素来创建自定义货币字段。
例如:
$amount = new Example_Form_Element_Currency(1234);
输出应如下所示:$1,234.00
。
我想要一个货币的自定义助手。
How to extend zend form element to create customized currency field.
For example:
$amount = new Example_Form_Element_Currency(1234);
The out put should be like this: $1,234.00
.
I want a custom helper for currency.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来您想要应用 过滤器。
我认为没有内置的货币过滤器,但是创建一个通过
number_format()
或类似的。Sounds like you're looking to apply a filter.
I don't think there's a built-in currency filter however it wouldn't be difficult to create one to run the submitted value through
number_format()
or similar.目前我也在使用这样的过滤器,但是当将值返回到控制器时,我的函数看起来很脏。我正在这里寻找更好的解决方案。
……
如果你看一下我的问题是 i18n 带来的。
At the moment I am working with such a filter too but when returning the values to the controller my function looks dirty. I am looking for a better solution here.
......
If you take a look my issues here come with i18n.