有没有一种简单的方法可以以编程方式列出 .MO 文件中的所有消息 ID?
我有一个很大的 ol' .po 文件,其中包含 PHP 应用程序所需的所有面向用户的字符串。 我想知道是否有一个 PHP 函数可以用来获取存储在 .po 或 .mo 中的所有 msgid 字符串的列表。
我没有看到已发布的 PHP 函数可以执行此操作。 任何人都知道类似的东西,或者我必须自己手动解析我的 .po 文件吗?
这是我最希望看到的:
$msgids = magic_gettext_keys_function('mydomain');
foreach ($msgids as $msgid) {
do_something_awesome($msgid);
}
I have a big ol' .po file containing all the user-facing strings I need for my PHP app. I'd like to know if there's a PHP function I can use to get a list of all the msgid strings stored in the .po or the .mo.
I didn't see a published PHP function that does this. Anyone know of something similar, or will I have to manually parse my .po file myself?
This is what I'd optimally like to see:
$msgids = magic_gettext_keys_function('mydomain');
foreach ($msgids as $msgid) {
do_something_awesome($msgid);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尚未收到任何答案,我假设没有 API 调用可以帮我完成此操作。 然而,从 .po 文件中提取 msgid 字符串几乎是微不足道的:
Not having received any answers yet, I'm assuming there is no API call to do it for me. However, it's almost trivial to extract the msgid strings from the .po file instead: