我需要在一个用 Core PHP 制作的项目中实现 Zend Translation,我不想使用用于翻译的 Full ZF Just Zend Translation Classes。
我将如何做这意味着我将如何开始?
which classes i need to add ??
i need the Flow that how would i do this ??
我需要在一个用 Core PHP 制作的项目中实现 Zend Translation,我不想使用用于翻译的 Full ZF Just Zend Translation Classes。
我将如何做这意味着我将如何开始?
which classes i need to add ??
i need the Flow that how would i do this ??
您需要从 Zend 库中复制这些文件
Zend_Translate.php 和 Zend_Translate(目录)其他一切都在文档中。您认为文档中有关 ZF 实施的想法是错误的。这是示例页面:
上面页面的第一个代码片段:
try {
$translate = new Zend_Translate(
array(
'adapter' => 'Company_Translate_Adapter_MyFormat',
'content' => '/path/to/translate.xx',
'locale' => 'en',
'myoption' => 'myvalue'
)
);
} catch (Exception $e) {
// File not found, no adapter class...
// General failure
}
如您所见,只使用了 Zend_Translate 类。所有的 zend 库都被开发成非常独立的,这意味着您可以通过它们的功能来分隔类(您可以通过使用类名复制文件来做到这一点)。您可以在文档中找到更多信息(一如既往;))