Fuel 视图中的 i18n(国际化)
在 Fuel PHP 视图中处理 i18n(国际化)字符串的最佳/建议方法是什么?我在文档中找不到对此的任何引用,并且正在考虑使用 gettext。有什么建议吗?
What's the best/suggested way to handle i18n (internationalization) strings in views for Fuel PHP? I'm unable to find any references to this in the docs and am considering going with gettext. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用lang类,你可以用它来加载你需要的语言文件。
代码示例:
example.php
您的文件
您可以创建不同的语言文件,例如“en, it”或更多,并根据用户的本地设置动态加载该文件。
You can use the lang class, you can use it to load the language file you need.
An example of code:
example.php
your file
You can create differente language file, like "en, it" or more, and dinamically load the file based on user's local settings.