文件名称:template:递归模板引擎
文件大小:9KB
文件格式:ZIP
更新时间:2024-08-03 01:15:17
PHP
模板 递归模板引擎。 字符串模板 最基本的模板是字符串模板。 它将包含{{ variables }}的字符串替换为作为替换传递的值: $ replacements = array ( 'variable' => 'replacement' ); $ string = 'this string contains a {{ variable }}' ; $ template = new StringTemplate ( $ string ); echo $ template -> render ( $ replacements ); // 'this string contains a replacement' 数组模板 数组模板像StringTemplate一样呈现其值。 $ replacements = array ( 'vehicle' => 'car' ,
【文件预览】:
template-master
----composer.json(627B)
----composer.lock(26KB)
----tests()
--------ArrayTemplateTest.php(3KB)
--------TemplateTestAbstract.php(774B)
--------StringTemplateTest.php(2KB)
----src()
--------StringTemplate.php(3KB)
--------ArrayTemplate.php(752B)
--------Renderizable.php(123B)
----.gitignore(17B)
----phpunit.xml.dist(660B)
----README.md(3KB)