php 系统模版_原生 PHP 模板系统:Plates
Plates 是原生 PHP 模板系統,非常容易使用和擴展,靈感來源于 Twig 模板引擎,包括現代化的模板語言功能。Plates 主要是為在編譯模板語言中選擇使用原生 PHP 模板的開發者提供的。
Here is a simple example of how to use Plates. We will assume the following directory stucture: `-- path `-- to `-- templates |-- template.php |-- profile.php
Within your controller // Create new Plates instance$templates = new League\Plates\Engine('/path/to/templates');// Render a templateecho $templates->render('profile', ['name' => 'Jonathan']);
The page template
profile.php layout('template', ['title' => 'User Profile']) ?>
User Profile
Hello, =$this->e($name)?>
The layout template
template.php =$this->e($title)?>=$this->section('content')?>
值得關注的特性 原生 PHP 模板,不需要學習新的語法
Plates 是模板系統,不是模板語言
Plates 鼓勵使用現有的 PHP 函數
使用模板布局和繼承提升代碼復用性
跨模板數據共享
內置轉義幫助函數
無固定框架,可以運用在任意的項目中
解耦設計,容易測試
支持 Composer,兼容 PSR-2
項目主頁:http://www.open-open.com/lib/view/home/1431008255398
本文原創發布php中文網,轉載請注明出處,感謝您的尊重!
總結
以上是生活随笔為你收集整理的php 系统模版_原生 PHP 模板系统:Plates的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 第5课 开心的金明《聪明人的游戏:信息学
- 下一篇: anaconda和python的区别_a