| 12345678910111213141516 |
- <?php
- class RecursivePartials extends Mustache {
- protected $_partials = array(
- 'child' => " > {{ name }}{{#child}}{{>child}}{{/child}}",
- );
- public $name = 'George';
- public $child = array(
- 'name' => 'Dan',
- 'child' => array(
- 'name' => 'Justin',
- 'child' => false,
- )
- );
- }
|