Laravel 8 문자열 studly() 도우미 함수 예제
3963 단어 laravel
이 게시물에서는 studly라는 라라벨 8 문자열 도우미의 예를 보여드리겠습니다. 이 함수는 모든 문자열을 대소문자 형식으로 변환하는 데 도움이 됩니다. 이는 메서드나 클래스 생성기 또는 텍스트 처리에 대해 생성된 함수를 처리하는 경우에 유용합니다. studly() 도우미 함수를 시작하려면 클래스로 가져와야 합니다.
use Illuminate\Support\Str;
그런 다음 Str 클래스로 도우미 함수를 호출합니다. 아래 예를 참조하십시오.
Str::studly('foo_bar')
이 Laravel 헬퍼 함수의 장점은 공백, 밑줄 및 하이픈이 있는 문자열을 지원한다는 것입니다. 실제 코드 예제는 아래를 참조하십시오.
라라벨 Studly 예제:
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Str;
class HomeController extends Controller
{
/**
* Show the application dashboard.
*
* @return \Illuminate\Contracts\Support\Renderable
*/
public function index()
{
$studly1 = Str::studly('foo_bar');
print_r($studly1);
// output - FooBar
echo '<br>';
$studly2 = Str::studly('code and deploy');
print_r($studly2);
// output - CodeAndDeploy
echo '<br>';
$studly3 = Str::studly('free-tutorials');
print_r($studly3);
// output - FreeTutorials
echo '<br>';
}
}
Laravel Studly 결과:
푸바
CodeAndDeploy
무료 튜토리얼
이 튜토리얼이 도움이 되었으면 합니다. 이 코드를 다운로드하려면 여기https://codeanddeploy.com/blog/laravel/laravel-8-string-studly-helper-function-example를 방문하십시오.
행복한 코딩 :)
Reference
이 문제에 관하여(Laravel 8 문자열 studly() 도우미 함수 예제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/codeanddeploy/laravel-8-string-studly-helper-function-example-5565텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)