如何将全局选项设置为 Zend Filter LocalizedToNormalized (NormalizedToLocalized)
我正在使用 Zend Framework 以及 LocalizedToNormalized 和 NormalizedToLocalized 来制作本地化表单。问题出在整个应用程序中,例如我想使用全局选项,例如精度和数字格式。
我发现的一种方法是在某个地方创建过滤器的静态实例,应用选项并在我想要的任何地方使用它们,但我想知道是否有更好的解决方案。
I am using Zend Framework and LocalizedToNormalized and NormalizedToLocalized to make a localized form. The problem is in the whole application for example I want to use global options such as precision and number format.
One way I found is to create somewhere static instances of the filters, applied with options and use them everywhere I want, but I want to know if there is a better solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Zend_Locale 并在 Zend_Registry 中设置它的实例,以便可以在整个应用程序中使用它。请记住,Zend_Registry 就像使用全局变量一样。它不存储在会话或类似的东西中。
You could use Zend_Locale and set an instance of it in the Zend_Registry so you could use it in the whole application. Remember that Zend_Registry is just like using a global var. It is not stored in a session or something like that.