변수 예제를 사용한 Laravel 번역
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 이 코드를 다운로드하려면.
행복한 코딩 :)
Reference
이 문제에 관하여(변수 예제를 사용한 Laravel 번역), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codeanddeploy/laravel-translation-with-variables-example-231f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)