o80/i18n 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

o80/i18n

Composer 安装命令:

composer require o80/i18n

包简介

Easy library to manage i18n with PHP.

README 文档

README

o80-i18n is a small PHP tool to manage i18n (internationalization). By default it uses json format for language files, you can define your own provider if you prefer another format. See below how the usage is simple.

Build Status Latest Unstable Version License

How-to

Installation

With Composer, you simply need to require o80/i18n:

{
...
    "require": {
        "o80/i18n": "~0.2"
    }
...
}

Usage

Dictionaries

For instance, put your language files in 'lang' directory :

  • langs
    • en.json
    • en_US.json
    • fr.json

Example of language file en.json :

{
    "Generic" : {
        "Welcome": "Welcome",
        "Hello": "Hello %s!",
        "submit": "submit"
    }
}

Example of language file fr.json :

{
    "Generic" : {
        "Welcome": "Bienvenue",
        "Hello": "Bonjour %s !",
        "submit": "valider"
    }
}

Configure the i18n instance

Way 1 - Singleton

$i18n = I18N::instance();
$i18n->setPath(__DIR__ . '/langs');
$i18n->setDefaultLang('en');

Way 2 - New instance

$i18n = new I18N();
$i18n->setPath(__DIR__ . '/langs');
$i18n->setDefaultLang('en');

Usage

Way 1 - Singleton

<h1><?php echo __('Generic', 'Welcome'); ?></h1>
<!-- Result : <h1>Welcome</h1> -->
<h1><?php echo __('Generic', 'NotExistingText'); ?></h1>
<!-- Result : <h1>[missing key: Generic.NotExistingText]</h1> -->
<span><?php echo __f('Generic', 'Hello', 'Olivier'); ?></span>
<!-- Result : <span>Hello Olivier!</span> -->
<span><?php echo I18N::instance()->getLoadedLang(); ?></span>
<!-- Result : <span>en</span> -->

Way 2 - With the instance

<h1><?php echo $i18n->get('Generic', 'Welcome'); ?></h1>
<!-- Result : <h1>Welcome</h1> -->
<h1><?php echo $i18n->get('Generic', 'NotExistingText'); ?></h1>
<!-- Result : <h1>[missing key: Generic.NotExistingText]</h1> -->
<span><?php echo $i18n->format('Generic', 'Hello', array('Olivier')); ?></span>
<!-- Result : <span>Hello Olivier!</span> -->
<span><?php echo $i18n->getLoadedLang(); ?></span>
<!-- Result : <span>en</span> -->

How to set the language to use

The system look into serverals variables to find the language file to load. Look below to understand it.

  • Use $_GET['lang'] if it's defined and if it matches to a language file;
  • Use $_SESSION['lang'] if it's defined and if it matches to a language file;
  • Use $_SERVER['HTTP_ACCEPT_LANGUAGE'] if it's defined and if it matches to a language file;
    • It checks for all languages found in this variable
  • Use the $defaultLang you defined in the I18N instance
  • If no file found, don't do load anything

Contribution

Just fork the project, make your changes, ask for pull request ;-).

统计信息

  • 总下载量: 31.59k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 12
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 10
  • Watchers: 3
  • Forks: 5
  • 开发语言: PHP

其他信息

  • 授权协议: Apache
  • 更新时间: 2015-03-18

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固