Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bobthecow/mustache.php
A Mustache implementation in PHP.
https://github.com/bobthecow/mustache.php
Last synced: 3 days ago
JSON representation
A Mustache implementation in PHP.
- Host: GitHub
- URL: https://github.com/bobthecow/mustache.php
- Owner: bobthecow
- License: mit
- Created: 2010-03-19T10:58:58.000Z (over 14 years ago)
- Default Branch: main
- Last Pushed: 2024-08-13T12:45:43.000Z (4 months ago)
- Last Synced: 2024-10-29T19:17:43.797Z (about 1 month ago)
- Language: PHP
- Homepage: http://mustache.github.io/
- Size: 1.01 MB
- Stars: 3,245
- Watchers: 113
- Forks: 420
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-php - Mustache - A PHP implementation of the Mustache template language. (Table of Contents / Templating)
- awesome-projects - Mustache - A PHP implementation of the Mustache template language. (PHP / Templating)
- php-awesome - Mustache
- awesome-php - Mustache - A PHP implementation of the Mustache template language. (Table of Contents / Templating)
- awesome-php-cn - Mustache - 胡子的PHP实现模板语言. (目录 / 模板 Templating)
README
Mustache.php
============A [Mustache](https://mustache.github.io/) implementation in PHP.
[![Package version](http://img.shields.io/packagist/v/mustache/mustache.svg?style=flat-square)](https://packagist.org/packages/mustache/mustache)
[![Monthly downloads](http://img.shields.io/packagist/dm/mustache/mustache.svg?style=flat-square)](https://packagist.org/packages/mustache/mustache)Installation
------------
```
composer require mustache/mustache
```Usage
-----A quick example:
```php
ENT_QUOTES));
echo $m->render('Hello {{planet}}', array('planet' => 'World!')); // "Hello World!"
```And a more in-depth example -- this is the canonical Mustache template:
```html+jinja
Hello {{name}}
You have just won {{value}} dollars!
{{#in_ca}}
Well, {{taxed_value}} dollars, after taxes.
{{/in_ca}}
```Create a view "context" object -- which could also be an associative array, but those don't do functions quite as well:
```php
value - ($this->value * 0.4);
}public $in_ca = true;
}
```And render it:
```php
ENT_QUOTES));
$chris = new Chris;
echo $m->render($template, $chris);
```*Note:* we recommend using `ENT_QUOTES` as a default of [entity_flags](https://github.com/bobthecow/mustache.php/wiki#entity_flags) to decrease the chance of Cross-site scripting vulnerability.
And That's Not All!
-------------------Read [the Mustache.php documentation](https://github.com/bobthecow/mustache.php/wiki/Home) for more information.
See Also
--------* [mustache(5)](http://mustache.github.io/mustache.5.html) man page.
* [Readme for the Ruby Mustache implementation](http://github.com/defunkt/mustache/blob/master/README.md).