jbboehr/handlebars

此包已被放弃,不再维护。作者建议使用https://github.com/jbboehr/php-handlebars包。

PHP handlebars 编译器和 VM

v0.7.0 2016-04-14 04:16 UTC

README

Build Status Coverage Status Latest Stable Version License

PHP handlebars.js 编译器和 VM。与handlebars.cphp-handlebars一起使用。

已弃用:使用php-handlebars代替

需求

php-handlebars

安装

通过Composer

composer require jbboehr/handlebars

使用

$handlebars = new Handlebars\Handlebars();

$fn = $handlebars->compile('{{foo}}');
echo $fn(array(
    'foo' => 'bar',
));

echo $handlebars->render('{{foo}}', array(
    'foo' => 'bar',
));

测试

make test

许可证

此项目采用LGPLv3许可证。handlebars.js 采用MIT许可证