奇怪的 gettext 行为,值存储在变量中

发布于 2024-10-16 04:43:36 字数 399 浏览 4 评论 0原文

我有一些如下代码:

<?php $subtitle = _('Products'); ?>

后来我输出了 $subtitle 的值,

<h2><?php echo $subtitle; ?></h2>

我本以为它会输出 Products 的翻译值,但它输出的是英文值。如果我将输出值的部分更改为以下内容,则它可以正常工作。

<h2><?php echo _($subtitle); ?></h2>

谁能解释为什么会发生这种情况?我假设 $subtitle 中的值是翻译后的值,但事实似乎并非如此。

I have some code like the following:

<?php $subtitle = _('Products'); ?>

Later on I output the value of $subtitle

<h2><?php echo $subtitle; ?></h2>

I would have thought that it would output the translated value of Products, but instead it outputs the English value. If I change the section where I output the value to the following, it works correctly.

<h2><?php echo _($subtitle); ?></h2>

Can anyone explain why this is happening? I had assumed that the value in $subtitle would be the translated value, but it does not appear to be the case.

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

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

发布评论

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

评论(1

你的往事 2024-10-23 04:43:36

我发现了问题所在,这是非常愚蠢的。在许多页面上,$subtitle 分配是在设置语言环境之前进行的。我没有注意到,因为设置区域设置的代码位于包含的公共头文件中。

I discovered what the problem was, and it was incredibly stupid. On many of the pages, the $subtitle assignment was taking place before the locale was set. I didn't notice because the code where the locale is set is in an included common header file.

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