php 系统模版_原生 PHP 模板系统:Plates
Plates 是原生 PHP 模板系統(tǒng),非常容易使用和擴(kuò)展,靈感來源于 Twig 模板引擎,包括現(xiàn)代化的模板語言功能。Plates 主要是為在編譯模板語言中選擇使用原生 PHP 模板的開發(fā)者提供的。
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')?>
值得關(guān)注的特性 原生 PHP 模板,不需要學(xué)習(xí)新的語法
Plates 是模板系統(tǒng),不是模板語言
Plates 鼓勵(lì)使用現(xiàn)有的 PHP 函數(shù)
使用模板布局和繼承提升代碼復(fù)用性
跨模板數(shù)據(jù)共享
內(nèi)置轉(zhuǎn)義幫助函數(shù)
無固定框架,可以運(yùn)用在任意的項(xiàng)目中
解耦設(shè)計(jì),容易測試
支持 Composer,兼容 PSR-2
項(xiàng)目主頁:http://www.open-open.com/lib/view/home/1431008255398
本文原創(chuàng)發(fā)布php中文網(wǎng),轉(zhuǎn)載請注明出處,感謝您的尊重!
總結(jié)
以上是生活随笔為你收集整理的php 系统模版_原生 PHP 模板系统:Plates的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 第5课 开心的金明《聪明人的游戏:信息学
- 下一篇: anaconda和python的区别_a