iamntz / handlebars.php
php的Handlebars处理器
v0.10.4
2016-12-12 13:51 UTC
Requires (Dev)
- phpunit/phpunit: ~4.4
- squizlabs/php_codesniffer: ~1.5
This package is auto-updated.
Last update: 2024-08-29 05:43:52 UTC
README
安装
将以下内容添加到你的composer.json文件的require属性中
"xamin/handlebars.php": "dev-master"
对于php 5.3+ "xamin/handlebars.php": "dev-php-52"
对于php 5.2
然后运行
$ composer install
使用方法
<?php // uncomment the following two lines, if you don't use composer // require 'src/Handlebars/Autoloader.php'; // Handlebars\Autoloader::register(); use Handlebars\Handlebars; $engine = new Handlebars; echo $engine->render( 'Planets:<br />{{#each planets}}<h6>{{this}}</h6>{{/each}}', array( 'planets' => array( "Mercury", "Venus", "Earth", "Mars" ) ) );
<?php use Handlebars\Handlebars; $engine = new Handlebars(array( 'loader' => new \Handlebars\Loader\FilesystemLoader(__DIR__.'/templates/'), 'partials_loader' => new \Handlebars\Loader\FilesystemLoader( __DIR__ . '/templates/', array( 'prefix' => '_' ) ) )); /* templates/main.handlebars: {{> partial planets}} */ /* templates/_partial.handlebars: {{#each this}} <file>{{this}}</file> {{/each}} */ echo $engine->render( 'main', array( 'planets' => array( "Mercury", "Venus", "Earth", "Mars" ) ) );
贡献
欢迎贡献,但请不要忘记
- 在每个你编辑的文件中添加你的名字作为作者
- 使用PHP CodeSniffer检查代码风格。
许可协议
Copyright (c) 2010 Justin Hileman
Copyright (C) 2012-2013 Xamin Project and contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.