gettext:从 msgstr 中检索 msgid

发布于 2024-10-01 05:37:38 字数 45 浏览 1 评论 0原文

是否可以从给定的 msgstr 中检索 msgid,而不用弄乱 po 文件?

Is it possible to retrieve the msgid from a given msgstr without messing around with the po-files?

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

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

发布评论

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

评论(1

樱&纷飞 2024-10-08 05:37:38

反向查找?不适用于本机 PHP gettext 扩展。但是您可以使用 upgradephp 中的 gettext.php。具体查找 gettext___load_mo($fn,"domain")。它从原始 .mo 数据填充全局 $_GETTEXT 数组,您可以使用 array_flip($_GETTEXT["domain"]) 接收 msgstr->; msgid 映射。

Reverse lookup? Not with the native PHP gettext extension. But you can use gettext.php from upgradephp. Specifically look for gettext___load_mo($fn,"domain"). It fills up a global $_GETTEXT array from the raw .mo data, and you could use array_flip($_GETTEXT["domain"]) to receive a msgstr->msgid mapping.

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