本文介绍了从.po或.mo文件获取翻译的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何从.po或.mo文件中提取所有翻译?我需要创建一个包含所有内部翻译的数组.

How can I extract all translations from a .po or .mo file?I need to create an array of all translations that are inside.

推荐答案

您可以使用 Zend Framework中的"Zend Translate "模块.

$translate = new Zend_Translate('gettext', '/path/to/english.mo', 'en');
$translate->addTranslation('/path/to/german.mo', 'de');

echo $translate->_("Example");

$translate->setLocale('de');

echo $translate->_("Example");

或者您可以使用php gettext 模块,但是Zend是方便得多.

or you can use php gettext module, but Zend is much more handy.

这篇关于从.po或.mo文件获取翻译的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-27 05:55