single blade
variable name
독립형 블레이드 템플릿 엔진(단일 파일, 종속성 없음)
릴리스 페이지에서 파일을 다운로드하고 프로젝트에 놓습니다. 그게 다야
위치: views/home/index.blade.php
@extends ( ' shared.layout ' )
@section ( ' looping-test ' )
< p >Let's print odd numbers under 50:</ p >
< p >
@foreach ( $numbers as $number )
@if ( $number % 2 !== 0 )
{{ $number } }
@endif
@endforeach
</ p >
@endsection
위치: views/shared/layout.blade.php
@include ( ' shared.header ' )
< body >
< div id = " container " >
< h3 >Welcome to < span class = " reddish " > {{ $title } } </ span ></ h3 >
< p > {{ $content } } </ p >
< p > @capitalize ( $mytext )</ p >
@yield ( ' looping-test ' )
</ div >
@include ( ' shared.footer ' )
</ body >
</ html >
위치: views/shared/header.blade.php
<!DOCTYPE html>
< html lang = " en " >
< head >
< meta charset = " UTF-8 " >
< title > {{ $title } } </ title >
< style type = " text/css " >
body { font-family : Arial , Helvetica , sans-serif ; font-size : 12 px } a { text-decoration : none ; color : #d73a49 } #container { position : relative ; top : 100 px ; width : 60 % ; margin : 0 auto ; border : 1 px solid #ccc ; border-radius : 3 px } #container h3 { margin : 0 ; padding : 10 px ; font-size : 18 px ; border-bottom : 1 px solid #ccc ; color : #666 } span .reddish { color : #bc5858 } #container code , #container p { margin : 0 ; padding : 10 px ; font-size : 12 px } #container code { margin : 12 px ; padding : 10 px ; display : block ; background-color : #fafbfc ; color : #333 } #footer { position : relative ; top : 120 px ; width : 60 % ; margin : 0 auto ; font-size : 11 px } #footer span .copyright { float : left } #footer span .version { float : right }
</ style >
</ head >
위치: views/shared/footer.blade.php
< div id = " footer " >
< span class = " copyright " >Written by < a href = " {{ $link } } " target = " _blank " > @esyede </ a ></ span >
< span class = " version " >Version {{ Blade :: VERSION } } </ span >
</ div >
위치: index.php
<?php
include ' Blade.php ' ;
use Esyede Blade ;
$ blade = new Blade ();
// View data
$ title = ' blade test ' ;
$ link = ' https://github.com/esyede ' ;
$ content = ' This is your view content ' ;
$ mytext = ' And this should be capitalized ' ;
$ numbers = range ( 1 , 50 );
// Create custom directive
$ blade -> directive ( ' capitalize ' , function ( $ text ) {
return " <?php echo strtoupper( $ text ) ?> " ;
});
$ data = compact ( ' title ' , ' link ' , ' content ' , ' mytext ' , ' numbers ' );
// render
$ blade -> render ( ' home.index ' , $ data );
명령 | 설명 |
---|---|
{{ $var }} | 에코. Laravel과 마찬가지로 기본적으로 이스케이프됩니다. |
{!! $var !!} | 원시 에코(이스케이프 없음) |
{{ $var or 'default' }} | 기본값이 있는 에코 콘텐츠 |
{{{ $var }}} | 에코 이스케이프된 콘텐츠 |
{{-- Comment --}} | 논평 |
명령 | 설명 |
---|---|
@if(condition) @elseif(condition) @else @endif | PHP if ( ) 블록 |
@unless(condition) @endunless | PHP if (! ) 블록 |
@switch(cases) @case(case) @break @default @endswitch | PHP switch ( ) 블록 |
명령 | 설명 |
---|---|
@foreach(key as value) @endforeach | PHP foreach ( ) 블록 |
@forelse(key as value) @empty @endforelse | 빈 블록이 있는 PHP foreach ( ) |
@for(i=0; i<10; i++) @endfor | for ( ) PHP |
@while(condition) @endwhile | PHP while ( ) 블록 |
명령 | 설명 |
---|---|
@isset(condition) @endisset | PHP if (isset( )) 블록 |
@set(key, value) | 변수 설정 <?php $key = $value ?> |
@unset(var) | PHP unset() |
@continue 또는 @continue(condition) | PHP는 continue; 또는 if (true) continue; |
@break 또는 @break(condition) | PHP 중단; 또는 if(true) break; |
@exit 또는 @exit(condition) | PHP 종료; 또는 if(true) 종료; |
@json(data) | PHP json_encode() |
@method('put') | 양식 메소드 스푸핑을 위한 HTML 숨겨진 입력 |
명령 | 설명 |
---|---|
@include(file) | 다른 보기 포함 |
@extends(layout) | 상위 레이아웃 확장 |
@section(name) @endsection | 부분 |
@yield(section) | 섹션을 산출하세요 |
@stop | 섹션 중지 |
@show | 섹션을 중지하고 콘텐츠를 생성합니다. |
@append | 섹션을 중지하고 동일한 이름을 가진 기존 섹션에 추가합니다. |
@overwrite | 섹션을 중지하고 이전 섹션을 같은 이름으로 덮어씁니다. |
물론 내장된 기능이 실제로 제한되어 있으므로 앞으로는 더 많은 기능이 필요합니다. 따라서 이 라이브러리를 확장하기 위해 두 가지 API가 제공됩니다.
이 방법을 사용하여 사용자 정의 명령을 추가할 수 있습니다. 위의 예에서 볼 수 있듯이 우리는 이미 이 API를 사용하여 새로운 @capitalize()
명령을 정의했습니다.
// Signature:
Blade:: directive (string $ name , Closure $ callback )
// Usage example:
$ blade -> directive ( ' capitalize ' , function ( $ value ) {
return strtolower ( $ value );
});
Custom directive를 추가하기 위해 제공되는 또 다른 API입니다. 실제로 이 명령은 내장된 @set()
명령을 정의하는 데 사용됩니다.
// Signature:
Blade:: extend (Closure $ compiler )
// Usage example:
$ blade -> extend ( function ( $ value ) {
return preg_replace ( " /@set([' " ](.*?)[' " ],(.*))/ " , ' <?php $$1 =$2; ?> ' , $ value );
});
거의 그 정도입니다. 들러주셔서 감사합니다!
이 라이브러리는 MIT 라이선스에 따라 라이선스가 부여됩니다.