#簡單快速的 PHP 範本引擎中。
{{= $var }}
{{ $var }}
{{ echo $var }}
if,elseif,else;foreach;for;switch
{{ $arr.0 }}
{{ $map.name }}
{{ $map.user.name }}
htmlspecialchars
將輸出結果處理raw
篩選器{{ $var | ucfirst }}
upper
lower
nl
{{# comments ... #}}
composer
composer require phppkg/easytpl
use PhpPkg\EasyTpl\EasyTemplate; $tplCode = <<<'CODE' My name is {{ $name | strtoupper }}, My develop tags: {{ foreach($tags as $tag) }} - {{ $tag }} {{ endforeach }} CODE; $t = new EasyTemplate(); $str = $t->renderString($tplCode, [ 'name' => 'inhere', 'tags' => ['php', 'go', 'java'], ]); echo $str;
渲染輸出:
My name is INHERE,My develop tags:- php- go- java
語法跟PHP原生模板一樣的,加入的特殊語法只是為了讓使用更方便。
EasyTemplate
預設為開啟輸出過濾,可用於渲染視圖範本TextTemplate
則是關閉了輸出過濾,主要用於文本處理,程式碼生成等use PhpPkg\EasyTpl\EasyTemplate;$t = EasyTemplate::new([ 'tplDir' => 'path/to/templates', 'allowExt' => ['.php', '.tpl'],]);// do something ...
#更多設定:
/** @var PhpPkg\EasyTpl\EasyTemplate $t */ $t->disableEchoFilter(); $t->addFilter($name, $filterFn); $t->addFilters([]); $t->addDirective($name, $handler);
下面的語句一樣,都可以用來列印輸出變數值
{{ $name }}{{= $name }}{{ echo $name }}
更多:
{{ $name ?: 'inhere' }}{{ $age > 20 ? '20+' : '7496cc0ab5396de5ca6090db2f9dfe8adisableEchoFilter()
{{ $name | raw }}
可以使用 .
來快速存取陣列值。原來的寫法也是可用的,簡潔寫法也會自動轉換為原生寫法。
$arr = [ 'val0', 'subKey' => 'val1',];
在範本中使用:
first value is: {{ $arr.0 }} // val0'subKey' value is: {{ $arr.subKey }} // val1
if
語句:
{{ if ($name !== '') }}hi, my name is {{ $name }}{{ endif }}
if else
語句:
hi, my name is {{ $name }}age is {{ $age }}, and{{ if ($age >= 20) }} age >= 20.{{ else }} age 18c725303e8f3bbaa2fd646de2f486bb= 50) }} age >= 50.{{ elseif ($age >= 20) }} age >= 20.{{ else }} age 9fb5e34af58c17fb1a6cfcec3f437641 $tag) }}{{ $index }}. {{ $tag }}{{ endforeach }}
#以{{
# 和#}}
包裹的內容將會當作註解而忽略。
{{# comments ... #}}{{ $name }} // inhere
multi lines:
{{# this comments block #}}{{ $name }} // inhere
預設內建過濾器:
upper
- 等同於strtoupper
lower
- 等同於strtolower
# -追加換行符\n
您可以在任何範本中使用篩選器。
基本上使用:
{{ 'inhere' | ucfirst }} // Inhere {{ 'inhere' | upper }} // INHERE
鍊式使用:
{{ 'inhere' | ucfirst | substr:0,2 }} // In{{ '1999-12-31' | date:'Y/m/d' }} // 1999/12/31
傳遞非靜態值:
{{ $name | ucfirst | substr:0,1 }}{{ $user['name'] | ucfirst | substr:0,1 }}{{ $userObj->name | ucfirst | substr:0,1 }}{{ $userObj->getName() | ucfirst | substr:0,1 }}
將變數作為過濾器參數傳遞:
{{ $suffix = '¥';}}{{ '12.75' | add_suffix:$suffix }} // 12.75¥
use PhpPkg\EasyTpl\EasyTemplate;$tpl = EasyTemplate::new();// use php built function$tpl->addFilter('upper', 'strtoupper');// 一次添加多个$tpl->addFilters([ 'last3chars' => function (string $str): string { return substr($str, -3); },]);
在模板中使用:
{{ $name = 'inhere';}}{{ $name | upper }} // INHERE{{ $name | last3chars }} // ere{{ $name | last3chars | upper }} // ERE
您可以使用指令實作一些特殊的邏輯。
$tpl = EasyTemplate::new();$tpl->addDirective( 'include', function (string $body, string $name) { /** will call {@see EasyTemplate::include()} */ return '$this->' . $name . $body; });
在模板中使用:
{{ include('part/header.tpl', ['title' => 'My world']) }}
Github: github.com/phppkg/easytpl
以上是詳解PHP EasyTpl的功能及安裝使用方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!