DotNotation.php 292 B

123456789101112131415
  1. <?php
  2. class DotNotation
  3. {
  4. public $person = array(
  5. 'name' => array('first' => 'Chris', 'last' => 'Firescythe'),
  6. 'age' => 24,
  7. 'hometown' => array(
  8. 'city' => 'Cincinnati',
  9. 'state' => 'OH',
  10. ),
  11. );
  12. public $normal = 'Normal';
  13. }