如何使用 Zend 在控制器中使用翻译?
通常我使用以下代码在视图中进行用户翻译:
<?php echo $this->translate("hello"); ?>
如何在控制器中获得翻译?
Usually i user translation in View with this code :
<?php echo $this->translate("hello"); ?>
How do i get a translation in the Controller?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要在控制器中使用翻译:
或者 创建翻译动作助手如果你想让一切保持干净和漂亮(尽管我认为在这种情况下不值得麻烦)。
To use translation in the controller:
Or create a translation action helper if you want to keep everything clean and pretty (although I don't think it's worth the trouble in this case).
如果您在引导程序中创建 zend_translate 对象,则可以在 Zend_Registry 中设置它以供以后使用:
然后在控制器中使用它:
据我所知,Zend_Controller 不包含对 zend_translate 的内置支持。
If you're creating the zend_translate object in the bootstrap, you can set it in the Zend_Registry for later use:
and then use it in the controller:
As far as I know, Zend_Controller doesn't include built-in support for zend_translate.
或者使用服务定位器(ZF2):
Or using the service locator (ZF2):