Table of Contents
1、简介
2、基本使用
3、覆盖Vendor包的语言文件
Home Backend Development PHP Tutorial [ Laravel 5.2 文档 ] 服务 -- 本地化

[ Laravel 5.2 文档 ] 服务 -- 本地化

Jun 23, 2016 pm 01:17 PM

1、简介

Laravel的本地化特性允许你在应用中轻松实现多种语言支持。

语言字符串默认存放在 resources/lang目录中,在该目录中应该包含应用支持的每种语言的子目录:

/resources    /lang        /en            messages.php        /es            messages.php
Copy after login

所有语言文件都返回一个键值对数组,例如:

<?phpreturn [    'welcome' => 'Welcome to our application'];
Copy after login

配置Locale选项

应用默认语言存放在配置文件 config/app.php中,当然,你可以修改该值来匹配应用需要。你还可以在运行时使用 App 门面上的 setLocale方法改变当前语言:

Route::get('welcome/{locale}', function ($locale) {    App::setLocale($locale);    //});
Copy after login

你还可以配置一个“备用语言”,当当前语言不包含给定语言行时备用语言被返回。和默认语言一样,备用语言也在配置文件 config/app.php中配置:

'fallback_locale' => 'en',
Copy after login

2、基本使用

你可以使用帮助函数 trans从语言文件中获取行,该方法接收文件和语言行的键作为第一个参数,例如,让我们在语言文件 resources/lang/messages.php中获取语言行 welcome:

echo trans('messages.welcome');
Copy after login

当然如果你使用Blade模板引擎,可以使用 {{ }}语法打印语言行:

{{ trans('messages.welcome') }}
Copy after login

如果指定的语言行不存在, trans函数将返回语言行的键,所以,使用上面的例子,如果语言行不存在的话, trans函数将返回 messages.welcome。

替换语言行中的参数

如果需要的话,你可以在语言行中定义占位符,所有的占位符都有一个:前缀,例如,你可以用占位符名称定义一个 welcome消息:

'welcome' => 'Welcome, :name',
Copy after login

要在获取语言行的时候替换占位符,传递一个替换数组作为 trans函数的第二个参数:

echo trans('messages.welcome', ['name' => 'Dayle']);
Copy after login

多元化

多元化是一个复杂的问题,因为不同语言对多元化有不同的规则,通过使用管道字符“|”,你可以区分一个字符串的单数和复数形式:

'apples' => 'There is one apple|There are many apples',
Copy after login

然后,你可以使用 trans_choice函数获取给定行数的语言行,在本例中,由于行数大于1,将会返回语言行的复数形式:

echo trans_choice('messages.apples', 10);
Copy after login

Laravel翻译器由Symfony 翻译组件提供,因此你可以创建更复杂的多元化规则:

'apples' => '{0} There are none|[1,19] There are some|[20,Inf] There are many',
Copy after login

3、覆盖Vendor包的语言文件

有些包可以处理自己的语言文件。你可以通过将自己的文件放在 resources/lang/vendor/{package}/{locale}目录下来覆盖它们而不是破坏这些包的核心文件来调整这些句子。

所以,举个例子,如果你需要覆盖名为 skyrim/hearthfire的包中的 messages.php文件里的英文句子,可以创建一个 resources/lang/vendor/hearthfire/en/messages.php文件。在这个文件中只需要定义你想要覆盖的句子,你没有覆盖的句子仍然从该包原来的语言文件中加载。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

See all articles