シンプルで高速な PHP テンプレート エンジン。
{{= $var }}
{{ $var }}
{{ echo $var }}
if,elseif,else;foreach;for;switch
{{ $arr.0 }}
{{ $map.name }}
{{ $map.user.name }}
htmlspecialchars
によって自動的に処理されます。raw
filter
lower
nl
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
出力フィルタリングはデフォルトでオンになっており、ビュー テンプレートのレンダリングに使用できます
出力フィルタリングをオフにし、主にテキスト処理、コード生成などに使用されます。
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+' : 'feb4f592bff34e932b55ac017dd2b6b8disableEchoFilter()<code></code># #テンプレートで出力フィルタリングを無効にする{{ $name | raw }}
$arr = [ 'val0', 'subKey' => 'val1',];
テンプレートで使用:
first value is: {{ $arr.0 }} // val0'subKey' value is: {{ $arr.subKey }} // val1If ステートメント ブロック
{{ 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 103b504ed5b2d90cc18ffc3339a8f309= 50) }} age >= 50.{{ elseif ($age >= 20) }} age >= 20.{{ else }} age 36d8aac10b9880ecaa63448a79043c0b $tag) }}{{ $index }}. {{ $tag }}{{ endforeach }}コメント
#}} パッケージの内容はコメントとして無視されます。
{{# comments ... #}}{{ $name }} // inhere
複数行:
{{# this comments block #}}{{ $name }} // inhereフィルターを使用
lower
nl
基本的な使用法
:{{ '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 中国語 Web サイトの他の関連記事を参照してください。