phpGrace 语言包使用说明1、添加语言包文件

    1. 位置:/分组目录/lang/语言.php 【自行创建】
    2. 命名: zh.phpen.php ,规则 : 语种.php
    3. //语言文件代码格式
    4. <?php
    5. return array(
    6. 'APP_NAME' => 'phpGrace',
    7. 'btnname' => '提交'
    8. );

    2、语言设置 $this->setLang($langType)使用 $this->setLang($langType) 全局函数可以设置使用的语种,如:

    1. class indexController extends grace{
    2. public function index(){}
    3. public function setLg(){
    4. if(empty($this->gets[0])){exit;}
    5. if(in_array($this->gets[0], array('zh', 'en'))){
    6. $this->setLang($this->gets[0]);
    7. header('location:/');
    8. }
    9. }
    10. }

    3、使用 lang($key) 函数获取语言

    1. <?php
    2. class indexController extends grace{
    3. public function index(){
    4. setLang('zh');
    5. echo lang('btnname');
    6. }
    7. }

    说明:使用 setLang() 动态的设置语种即可达到语言包切换的目的 ^_^

    原文: http://www.phpgrace.com/doc/info/321-6.html