변수 예제를 사용한 Laravel 번역

원래 게시 @ https://codeanddeploy.com 샘플 코드를 방문하여 다운로드하십시오.
https://codeanddeploy.com/blog/laravel/laravel-translation-with-variables-example

이번 포스팅에서는 변수로 라라벨 번역을 구현하는 방법을 보여드리겠습니다. 다국어로 라라벨 애플리케이션을 구축하는 것은 놀라운 일이며 라라벨 프레임워크로 쉽게 할 수 있습니다. 변수/자리 표시자를 사용하여 언어에 동적 값을 전달하는 것은 어떻습니까?

이것이 당신의 영어라고 가정해 봅시다.

{
   "This is a sample message for :name with another :variable2": "This is a sample message for :name with another :variable2"
}


그렇다면 언어 변수/자리 표시자에 동적 값을 입력하는 방법은 무엇입니까?

아래 예를 참조하십시오.

$name = "your dynamic value here";
$variable2 = "dynamic value for variable 2";

// you can do it inside your PHP code like controller
trans('This is a sample message for :name with another :variable2', [ 'name' => $name, 'variable2' => $variable2]);

// or this helper function
__('This is a sample message for :name with another :variable2', [ 'name' => $name, 'variable2' => $variable2]);

// for blade template
@lang('This is a sample message for :name with another :variable2', [ 'name' => $name, 'variable2' => $variable2]);


이 튜토리얼이 도움이 되었으면 합니다. 친절하게 여기를 방문하십시오 https://codeanddeploy.com/blog/laravel/laravel-translation-with-variables-example 이 코드를 다운로드하려면.

행복한 코딩 :)

좋은 웹페이지 즐겨찾기