DotNotation.php 512 B

123456789101112131415161718192021222324
  1. <?php
  2. /*
  3. * This file is part of Mustache.php.
  4. *
  5. * (c) 2010-2017 Justin Hileman
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. class DotNotation
  11. {
  12. public $person = array(
  13. 'name' => array('first' => 'Chris', 'last' => 'Firescythe'),
  14. 'age' => 24,
  15. 'hometown' => array(
  16. 'city' => 'Cincinnati',
  17. 'state' => 'OH',
  18. ),
  19. );
  20. public $normal = 'Normal';
  21. }