Laravel 8 문자열 studly() 도우미 함수 예제

3963 단어 laravel
원래 게시된 @https://codeanddeploy.com 방문하여 샘플 코드 다운로드: https://codeanddeploy.com/blog/laravel/laravel-8-string-studly-helper-function-example

이 게시물에서는 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를 방문하십시오.

행복한 코딩 :)

좋은 웹페이지 즐겨찾기