若是你的項目想要支持多語言版本,那麼就須要用到 Zend_Translate。Zend_Translate 的詳細文檔在這裏,不過若是想偷懶的話,也很簡單,在View Helpers 文檔中介紹瞭如何用 Translate Helper 輕鬆實現多語言支持。php
1. 準備翻譯文件html
Zend_Translate 支持多種格式的翻譯文件。選用何種格式能夠參考這裏。若是條目不是不少(5000條如下),那麼能夠考慮用最直觀的數組格式,並且能夠寫到一個 php 文件裏。假設,咱們須要一箇中文版支持,翻譯文件命名爲 zh_cn.php,放在與 application 平行的 languages 文件夾裏。該文件內容以下:前端
<?php return array( 'hello_world' => '你好!', );
2. 加載翻譯文件web
編輯 html/index.php 文件,在前端控制器運行以前,插入下面的代碼:數組
require_once 'Zend/Registry.php'; require_once 'Zend/Translate.php'; $adapter = new Zend_Translate('array', $rootPath . '/languages/zh_cn.php', 'zh'); Zend_Registry::set('Zend_Translate', $adapter);
上述代碼的做用是載入 zh_cn.php,並把它保存成全局變量。Zend_Registry 能夠當作是一個全局變量容器。瀏覽器
注意:在保存到 Zend_Registry 中時,鍵值必須是 Zend_Translate,不然,得不到應有的結果。app
3. 在視圖中使用翻譯條目ui
編輯 application/views/scripts/index/index.phtml 文件,將原來的「<h1>Hello World!</h1>」替換成:this
<h1><?php echo $this->translate('hello_world'); ?></h1>spa
4. 查看頁面
這時,瀏覽器中看到的應是「你好!」。