Fuel 视图中的 i18n(国际化)

发布于 2024-12-19 15:35:35 字数 202 浏览 0 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧竹 2024-12-26 15:35:35

你可以使用lang类,你可以用它来加载你需要的语言文件。
代码示例:

example.php

return array(
    'hello' => 'Hello :name',
    'something'=> 'something :name!',
    'test'=> array(
        'hello' => 'Hello', 
        'something' => 'Plop'
    )
);

您的文件

// Will load the file "example.php" into the "var" variable
Lang::load('example', 'var');

// Get the variable "something"
$this->output = Lang::get('var.test.something');

您可以创建不同的语言文件,例如“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

return array(
    'hello' => 'Hello :name',
    'something'=> 'something :name!',
    'test'=> array(
        'hello' => 'Hello', 
        'something' => 'Plop'
    )
);

your file

// Will load the file "example.php" into the "var" variable
Lang::load('example', 'var');

// Get the variable "something"
$this->output = Lang::get('var.test.something');

You can create differente language file, like "en, it" or more, and dinamically load the file based on user's local settings.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文