DotNotation.php 240 B

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