现在的位置: 首页 > 综合 > 正文

Yii-架构- 语言包的使用

2013年12月05日 ⁄ 综合 ⁄ 共 269字 ⁄ 字号 评论关闭
  1. 语言包目录
    /protected/messages/zh_cn/

  2. 语言包文件格式
    <?php
    /**
     * btt.php
     */
    return array (
      'pre_pager' => '前一页面',
      'Home' => '首页',
      'The button type "{type}" is not supported.' => '按钮类型 "{type}" 不支持。',
      'Are you sure you want to delete this item?' => '确定要删除这条数据吗?',
      'Delete' => '删除',
    );

  3. 使用语言包
    print_r(Yii::t('btt','pre_pager'));

抱歉!评论已关闭.