将变量传递给 CakePHP 中的 __() 函数

发布于 2024-10-13 05:43:12 字数 315 浏览 4 评论 0原文

这个周末我正在构建一个名为“Pirates Vs”的小项目。忍者VS。僵尸大战机器人;)

目的是学习 Cake 的一些我以前从未使用过的方面 - 例如用于翻译的 __() 函数。

我收到一条消息,想要输出类似“%s 谢谢”的消息,其中 %s 是“僵尸”。如果我使用普通的 PHP,我想我会使用:

$string = 'Zombies';
printf('The %s thank you', $string);

但当我尝试使用 __() 翻译函数时,我不知道如何使其工作。

有人可以帮我吗?谢谢 :)

I'm in the process of building a little project this weekend called Pirates Vs. Ninjas Vs. Zombies Vs. Robots ;)

The purpose is to learn some of the aspects of Cake that I've not yet used before - such as the __() function for translation.

I've got a message that I want to output along the lines of "The %s thank you", where %s would be 'Zombies'. If I was using normal PHP, I guess I would use:

$string = 'Zombies';
printf('The %s thank you', $string);

But as I'm trying to use the __() translate function, I don't know how to make this work.

Can anyone help me please? Thank you :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

梦里°也失望 2024-10-20 05:43:12

在 cakephp 2.0+ 中,它默认翻译

$string = 'Zombies';
echo __('The %s thank you', $string);

in cakephp 2.0+ it translates by default

$string = 'Zombies';
echo __('The %s thank you', $string);
牵你手 2024-10-20 05:43:12

__ 函数的第二个参数设置为 true ,它将返回翻译后的字符串而不是回显它:

$string = 'Zombies';
printf(__('The %s thank you', true), $string);

Set the second parameter of the __ function to true and it will return the translated string instead of echoing it:

$string = 'Zombies';
printf(__('The %s thank you', true), $string);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文