00f100 / fcphp-i18n
此包的最新版本(0.1.2)没有提供许可证信息。
国际化i18n
0.1.2
2018-08-04 15:27 UTC
Requires
- php: >=7.2
Requires (Dev)
- 00f100/phpdbug: *
- phpunit/phpunit: 6.*
This package is auto-updated.
Last update: 2024-09-18 05:40:45 UTC
README
如何安装
Composer
$ composer require 00f100/fcphp-i18n
或添加到composer.json中
{ "require": { "00f100/fcphp-i18n": "*" } }
如何使用
<?php $default = 'pt-br'; $translate = [ 'pt-br' => [ 'My name is %s' => 'Meu nome é %s', ], 'en' => [ 'My name is %s' => 'My name is %s', ], 'es' => [ 'My name is %s' => 'Mi nombre és %s', ], ]; __i18n_configure($default, $translate); $name = 'João'; $text = 'My name is %s'; // Print: Meu nome é João echo __($text, $name); // Print: Meu nome é João echo _i18n_translate($text, $name);