原生 PHP 模板系統:Plates

ygw3 9年前發布 | 50K 次閱讀 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 template
echo $templates->render('profile', ['name' => 'Jonathan']);

The page template

profile.php
<?php $this->layout('template', ['title' => 'User Profile']) ?>

<h1>User Profile</h1>
<p>Hello, <?=$this->e($name)?></p>

The layout template

template.php
<html>
<head>
    <title><?=$this->e($title)?></title>
</head>
<body>

<?=$this->section('content')?>

</body>
</html>


值得關注的特性

  • 原生 PHP 模板,不需要學習新的語法

  • Plates 是模板系統,不是模板語言

  • Plates 鼓勵使用現有的 PHP 函數

  • 使用模板布局和繼承提升代碼復用性

  • 跨模板數據共享

  • 內置轉義幫助函數

  • 無固定框架,可以運用在任意的項目中

  • 解耦設計,容易測試

  • 支持 Composer,兼容 PSR-2

項目主頁:http://www.baiduhome.net/lib/view/home/1431008255398

 本文由用戶 ygw3 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!