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 | PHP for ( ) 區塊 |
@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) 中斷; |
@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 );
});
這是另一個用於添加自訂指令的 API。事實上,這個指令是用來定義我們內建的@set()
指令的:
// Signature:
Blade:: extend (Closure $ compiler )
// Usage example:
$ blade -> extend ( function ( $ value ) {
return preg_replace ( " /@set([' " ](.*?)[' " ],(.*))/ " , ' <?php $$1 =$2; ?> ' , $ value );
});
差不多就這樣了。感謝您的光臨!
該庫已根據 MIT 許可證獲得許可