コード例 #1
0
ファイル: I18nTest.php プロジェクト: robotdance/php-i18n
 public function testL10nArray()
 {
     $array = [1, 2, 3];
     $this->assertEquals('1, 2 and 3', I18n::l($array));
     $this->changeLocale('pt-BR', 'pt_BR');
     $this->assertEquals('1, 2 e 3', I18n::l($array));
 }