hjl/hjl_wkhtml

hjl wkhtml 的 composer 项目服务!

1.0.4 2020-08-19 19:02 UTC

This package is auto-updated.

Last update: 2024-09-24 12:06:27 UTC


README

如果您正在运行特定的 PHP 版本

git clone https://github.com/jbboehr/php-handlebars.git

cd php-handlebars

/usr/local/bin/phpize

./configure --with-php-config=/usr/local/bin/php-config

make

make test

sudo make install

将扩展添加到您的 php.ini 文件中

echo extension=handlebars.so | tee -a /path/to/your/php.ini

最后,重新启动 web 服务器。

用法

$vm = new Handlebars\VM();

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

echo $vm->renderFile('/path/to/foo.hbs', array('foo' => 'bar'));