1、简介
Laravel的本地化特性允许你在应用中轻松实现多种语言支持。
语言字符串默认存放在 resources/lang目录中,在该目录中应该包含应用支持的每种语言的子目录:
/resources /lang /en messages.php /es messages.php
所有语言文件都返回一个键值对数组,例如:
<?phpreturn [ 'welcome' => 'Welcome to our application'];
配置Locale选项
应用默认语言存放在配置文件 config/app.php中,当然,你可以修改该值来匹配应用需要。你还可以在运行时使用 App 门面上的 setLocale方法改变当前语言:
Route::get('welcome/{locale}', function ($locale) { App::setLocale($locale); //});
你还可以配置一个“备用语言”,当当前语言不包含给定语言行时备用语言被返回。和默认语言一样,备用语言也在配置文件 config/app.php中配置:
'fallback_locale' => 'en',
2、基本使用
你可以使用帮助函数 trans从语言文件中获取行,该方法接收文件和语言行的键作为第一个参数,例如,让我们在语言文件 resources/lang/messages.php中获取语言行 welcome:
echo trans('messages.welcome');
当然如果你使用Blade模板引擎,可以使用 {{ }}语法打印语言行:
{{ trans('messages.welcome') }}
如果指定的语言行不存在, trans函数将返回语言行的键,所以,使用上面的例子,如果语言行不存在的话, trans函数将返回 messages.welcome。
替换语言行中的参数
如果需要的话,你可以在语言行中定义占位符,所有的占位符都有一个:前缀,例如,你可以用占位符名称定义一个 welcome消息:
'welcome' => 'Welcome, :name',
要在获取语言行的时候替换占位符,传递一个替换数组作为 trans函数的第二个参数:
echo trans('messages.welcome', ['name' => 'Dayle']);
多元化
多元化是一个复杂的问题,因为不同语言对多元化有不同的规则,通过使用管道字符“|”,你可以区分一个字符串的单数和复数形式:
'apples' => 'There is one apple|There are many apples',
然后,你可以使用 trans_choice函数获取给定行数的语言行,在本例中,由于行数大于1,将会返回语言行的复数形式:
echo trans_choice('messages.apples', 10);
Laravel翻译器由Symfony 翻译组件提供,因此你可以创建更复杂的多元化规则:
'apples' => '{0} There are none|[1,19] There are some|[20,Inf] There are many',
3、覆盖Vendor包的语言文件
有些包可以处理自己的语言文件。你可以通过将自己的文件放在 resources/lang/vendor/{package}/{locale}目录下来覆盖它们而不是破坏这些包的核心文件来调整这些句子。
所以,举个例子,如果你需要覆盖名为 skyrim/hearthfire的包中的 messages.php文件里的英文句子,可以创建一个 resources/lang/vendor/hearthfire/en/messages.php文件。在这个文件中只需要定义你想要覆盖的句子,你没有覆盖的句子仍然从该包原来的语言文件中加载。

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-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

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.

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' =>

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

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

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 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


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1
Easy-to-use and free code editor
