Files
Mustache/examples/recursive_partials/RecursivePartials.php
T

15 lines
237 B
PHP

<?php
class RecursivePartials extends Mustache {
protected $_partials = array(
'child' => "* {{ name }}",
);
public $name = 'George';
public $child = array(
'name' => 'Dan',
'child' => array(
'name' => 'Justin',
)
);
}