文件名称:tlex:php模板执行器
文件大小:22KB
文件格式:ZIP
更新时间:2024-07-05 22:42:28
PHP
什么是特莱克斯 Tlex 是一个简单而强大的 php 模板执行器。 -> 如何使用 只需执行Tlex::render($templateFileName, $context) <?php require 'tlex/tlex.php' ; $ context = new StdClass (); $ context -> foo = 'foooooo' ; $ context -> fruits = array ( 'apple' , 'banana' , 'lemon' ); Tlex :: render ( 'example.thtml' , $ context ); ?> 模板函数 {% //php code %} --> 使用 php 原始代码 {$foo} --> 打印变量 {$foo|trim} --> 使用过滤器(管道)打印变量(如 django) {c
【文件预览】:
tlex-master
----example()
--------example.thtml(3KB)
--------example.css(130B)
--------example.php(999B)
----LICENSE(1KB)
----tlex()
--------common()
--------lib()
--------tlex.php(2KB)
--------user-extensions()
--------cache()
----README.md(3KB)
----.gitignore(3KB)
----.htaccess(132B)