日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

php 系统模版_原生 PHP 模板系统:Plates

發布時間:2025/3/15 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。