DotNotation.php 345 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * DotNotation example class. Uses DOT_NOTATION pragma.
  4. *
  5. * @extends Mustache
  6. */
  7. class DotNotation extends Mustache {
  8. public $person = array(
  9. 'name' => array('first' => 'Chris', 'last' => 'Firescythe'),
  10. 'age' => 24,
  11. 'hometown' => array(
  12. 'city' => 'Cincinnati',
  13. 'state' => 'OH',
  14. )
  15. );
  16. public $normal = 'Normal';
  17. }